summaryrefslogtreecommitdiffstats
path: root/src/org/uic/header/SequenceOfDataType.java
blob: c91b8fa36e9bbf5fdad81f579f849a0fbfb4e327 (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.header;


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

}