Uses of Class
jflex.Action
-
Packages that use Action Package Description jflex -
-
Uses of Action in jflex
Fields in jflex declared as Action Modifier and Type Field Description (package private) Action[]DFA. actionaction[state]is the action that is to be carried out in statestate,nullif there is no action.(package 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 with type parameters of type Action Modifier and Type Field Description private java.util.Map<java.lang.Integer,Action>EOFActions. actionsmaps lexical states to actions(package private) java.util.List<Action>LexScan. actions(package private) java.util.List<Action>RegExps. actionsthe action of a regexpprivate java.util.Map<Action,java.lang.Integer>Emitter. actionTablemaps actions to their switch label(package private) java.util.Map<Action,Action>DFA. usedActionsall actions that are used in this DFA(package private) java.util.Map<Action,Action>DFA. usedActionsall actions that are used in this DFAMethods in jflex that return Action Modifier and Type Method Description ActionAction. copyChoice(int length)copyChoice.ActionEOFActions. getAction(int state)getAction.private 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 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.voidDFA. setAction(int state, Action stateAction)Sets the action.
-