Uses of Class
JFlex.Action

Packages that use Action
JFlex   
 

Uses of Action in JFlex
 

Fields in JFlex declared as Action
(package private)  Action[] NFA.action
           
(package private)  Action[] DFA.action
          action[state] is the action that is to be carried out in state state, null if there is no action.
 

Methods in JFlex that return Action
 Action RegExps.getAction(int num)
           
 Action EOFActions.getAction(int state)
           
 Action EOFActions.getDefault()
           
 Action Action.getHigherPriority(Action other)
          Compares the priority value of this Action with the specified action.
 

Methods in JFlex with parameters of type Action
 void EOFActions.add(java.lang.Integer state, Action action)
           
 void EOFActions.add(java.util.Vector stateList, Action action)
           
 Action Action.getHigherPriority(Action other)
          Compares the priority value of this Action with the specified action.
 int RegExps.insert(int line, java.util.Vector stateList, RegExp regExp, Action action, java.lang.Boolean isBOL, RegExp lookAhead)
           
 int RegExps.insert(java.util.Vector stateList, Action action)
           
 boolean Action.isEquiv(Action a)
          Returns true iff the parameter is an Action with the same content as this one.
 void DFA.setAction(int state, Action stateAction)