blob: 5a8e6a2dc887e10081b12c38c78f8e9946e45204 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package org.uic.ticket.api.asn.omv1;
import java.util.Collection;
import net.gcdc.asn1.datatypes.Asn1SequenceOf;
public class SequenceOfVatDetail extends Asn1SequenceOf<VatDetailType> {
public SequenceOfVatDetail() { super(); }
public SequenceOfVatDetail(Collection<VatDetailType> coll) { super(coll); }
}
|