summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/uic/barcode/asn1/datatypes/Asn1AnonymousType.java
blob: b1b04991ed707a4693b3f1db114009de613f5bc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.uic.barcode.asn1.datatypes;

import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
/**
 * This annotation indicates that the class is not present in the original ASN.1 declaration.
 * This happens when SEQUENCE members have restrictions (ranges, alphabets etc).
 *
 * This annotation plays no role in the UPER encoding.
 *
 */
@Target({ElementType.TYPE})
public @interface Asn1AnonymousType {

}