We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When i compile an asn.1 like this: PDU ::= CHOICE { a A, b B }
PDU ::= CHOICE { a A, b B }
i want a choiceId in the generated class, so that i can process it with switch/case. And constants CHOICE_ID_A, CHOICE_ID_B like this:
public class PDU implements Serializable { public static final int CHOICE_ID_A = 0; public static final int CHOICE_ID_B = 1; private int choiceId; private A a = null; private B b = null; }
The text was updated successfully, but these errors were encountered:
I'll put that on my todo list.
Sorry, something went wrong.
No branches or pull requests
When i compile an asn.1 like this:
PDU ::= CHOICE { a A, b B }
i want a choiceId in the generated class, so that i can process it with switch/case. And constants CHOICE_ID_A, CHOICE_ID_B like this:
The text was updated successfully, but these errors were encountered: