Uses of Class
jflex.core.Action
-
Packages that use Action Package Description jflex.core jflex.dfa jflex.generator -
-
Uses of Action in jflex.core
Fields in jflex.core declared as Action Modifier and Type Field Description private Action[]NFA. actionaction[current_state]: the action associated with the state current_state (null, if there is no action for the state)private ActionEOFActions. defaultActionFields in jflex.core with type parameters of type Action Modifier and Type Field Description (package private) java.util.List<Action>AbstractLexScan. actionsprivate java.util.Map<java.lang.Integer,Action>EOFActions. actionsmaps lexical states to actionsprivate java.util.List<Action>RegExps. actionsthe action of a regexpMethods in jflex.core that return Action Modifier and Type Method Description ActionAction. copyChoice(int length)copyChoice.ActionEOFActions. getAction(int state)getAction.ActionNFA. getAction(StateSet set)Returns the action with highest priority in the specified set of states.ActionRegExps. getAction(int num)getAction.ActionEOFActions. getDefault()Returns the default action.ActionAction. getHigherPriority(Action other)Compares the priority value of this Action with the specified action.Methods in jflex.core that return types with arguments of type Action Modifier and Type Method Description java.lang.Iterable<Action>AbstractLexScan. actions()Methods in jflex.core with parameters of type Action Modifier and Type Method Description voidEOFActions. add(java.lang.Integer state, Action action)Add.voidEOFActions. add(java.util.List<java.lang.Integer> stateList, Action action)Add.ActionAction. getHigherPriority(Action other)Compares the priority value of this Action with the specified action.intRegExps. insert(int line, java.util.List<java.lang.Integer> stateList, RegExp regExp, Action action, java.lang.Boolean isBOL, RegExp lookAhead)insert.intRegExps. insert(java.util.List<java.lang.Integer> stateList, Action action)insert.private voidNFA. insertLookAheadChoices(int baseEnd, Action a, RegExp lookAhead)Insert NFAs for the (finitely many) fixed length lookahead choices.booleanAction. isEquiv(Action a)Returnstrueiff the parameter is an Action with the same content as this one. -
Uses of Action in jflex.dfa
Fields in jflex.dfa declared as Action Modifier and Type Field Description private Action[]DFA. actionaction[state]is the action that is to be carried out in statestate,nullif there is no action.Fields in jflex.dfa with type parameters of type Action Modifier and Type Field Description private java.util.Map<Action,Action>DFA. usedActionsall actions that are used in this DFAprivate java.util.Map<Action,Action>DFA. usedActionsall actions that are used in this DFAMethods in jflex.dfa that return Action Modifier and Type Method Description ActionDFA. action(int i)Methods in jflex.dfa with parameters of type Action Modifier and Type Method Description voidDFA. setAction(int state, Action stateAction)Sets the action. -
Uses of Action in jflex.generator
Fields in jflex.generator with type parameters of type Action Modifier and Type Field Description private java.util.Map<Action,java.lang.Integer>Emitter. actionTablemaps actions to their switch label
-