summaryrefslogtreecommitdiffstats
path: root/src/net/gcdc/asn1/datatypes/Asn1AnonymousType.java
blob: 4a30d23c82ca25a134abeecdb8d1299719afae0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package net.gcdc.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 {

}