Uses of Class
JFlex.RegExp

Packages that use RegExp
JFlex   
 

Uses of RegExp in JFlex
 

Subclasses of RegExp in JFlex
 class RegExp1
          Stores a regular expression from the rules section of a JFlex specification.
 class RegExp2
          Regular expression with two children (e.g. a | b)
 

Fields in JFlex declared as RegExp
(package private)  RegExp RegExp2.r1
           
(package private)  RegExp RegExp2.r2
           
 

Methods in JFlex that return RegExp
 RegExp Macros.getDefinition(java.lang.String name)
          Fetches the definition of the macro with the specified name, The definition will either be the same as stored (expand() not called), or an equivalent one, that doesn't contain any macro usages (expand() called before).
 RegExp RegExps.getLookAhead(int num)
           
 RegExp RegExps.getRegExp(int num)
           
 

Methods in JFlex with parameters of type RegExp
 int RegExps.insert(int line, java.util.Vector stateList, RegExp regExp, Action action, java.lang.Boolean isBOL, RegExp lookAhead)
           
 boolean Macros.insert(java.lang.String name, RegExp definition)
          Stores a new macro and its definition.
 IntPair NFA.insertNFA(RegExp regExp)
          Constructs an NFA for regExp such that the NFA has exactly one start state, exactly one end state, no transitions leading out of the end state no transitions leading into the start state
 

Constructors in JFlex with parameters of type RegExp
RegExp2(int type, RegExp r1, RegExp r2)