summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/uic/barcode/dynamicFrame/SequenceOfDataType.java
blob: b5c130ef22855043bb741ee30d2e91b84edad077 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package org.uic.barcode.dynamicFrame;


import java.util.Collection;

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

/**
 * The Class SequenceOfDataType.
 */
public class SequenceOfDataType extends Asn1SequenceOf<DataType>{

	    /**
    	 * Instantiates a new sequence of data type.
    	 */
    	public SequenceOfDataType() { super(); }
	    
    	/**
    	 * Instantiates a new sequence of data type.
    	 *
    	 * @param coll the coll
    	 */
    	public SequenceOfDataType(Collection<DataType> coll) { super(coll); }

}