summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/uic/barcode/asn1/uper/SeqOfFixedSize.java
blob: 5d75e7206cd3cec9889519b50c380501bfe1cd7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.uic.barcode.asn1.uper;

import java.util.Arrays;
import java.util.Collection;

import org.uic.barcode.asn1.datatypes.Asn1SequenceOf;
import org.uic.barcode.asn1.datatypes.FixedSize;


public class SeqOfFixedSize {
        @FixedSize(3)
        public static class Bar extends Asn1SequenceOf<Byte> {
            public Bar(Byte... coll)          { this(Arrays.asList(coll)); }
            public Bar(Collection<Byte> coll) { super(coll); }
        }


}