summaryrefslogtreecommitdiffstats
path: root/src/org/uic/barcode/dynamicFrame/SequenceOfDataType.java
blob: c879dddce0e6a2fe6bcc85410f7b00479b8e92c8 (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
26
package org.uic.barcode.dynamicFrame;


import java.util.Collection;

import net.gcdc.asn1.datatypes.Asn1SequenceOf;
// TODO: Auto-generated Javadoc

/**
 * 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); }

}