ASN1Choice.java revision e6bf3e8dfa2804891a82075cb469b736321b4827
1package org.bouncycastle.asn1;
2
3/**
4 * Marker interface for CHOICE objects - if you implement this in a role your
5 * own object any attempt to tag the object implicitly will convert the tag to
6 * an explicit one as the encoding rules require.
7 * <p>
8 * If you use this interface your class should also implement the getInstance
9 * pattern which takes a tag object and the tagging mode used.
10 */
11public interface ASN1Choice
12{
13    // marker interface
14}
15