blob: 78477440c7e4f8e7cf4521e297994f25eb6f4e10 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package org.uic.ticket.api.asn.omv2;
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); }
}
|