Package org.javacc.parser
Class Choice
- java.lang.Object
-
- org.javacc.parser.Expansion
-
- org.javacc.parser.Choice
-
public class Choice extends Expansion
Describes expansions where one of many choices is taken (c1|c2|...).
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<Expansion>choicesThe list of choices of this expansion unit.-
Fields inherited from class org.javacc.parser.Expansion
eol, inMinimumSize, myGeneration, ordinal, parent
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringBufferdump(int indent, java.util.Set<Expansion> alreadyDumped)java.util.List<Expansion>getChoices()-
Methods inherited from class org.javacc.parser.Expansion
dumpPrefix, getColumn, getLine, getProductionName, hashCode, setColumn, setLine, toString
-
-
-
-
Field Detail
-
choices
private final java.util.List<Expansion> choices
The list of choices of this expansion unit. Each List component will narrow to ExpansionUnit.
-
-