Uses of Class
edu.buffalo.nsf.xmlcqa.data.dtd.RegExpr

Packages that use RegExpr
edu.buffalo.nsf.xmlcqa.data.dtd Package containing regular expressions and DTD. 
 

Uses of RegExpr in edu.buffalo.nsf.xmlcqa.data.dtd
 

Subclasses of RegExpr in edu.buffalo.nsf.xmlcqa.data.dtd
 class Clousure
          A class representing Kleene's clousure.
 class Concat
          A class representing concatenation of two regular expressions.
 class Tag
          Class representing tag label of a document.
 class Union
          A class representing a union of two regular expressions.
 

Fields in edu.buffalo.nsf.xmlcqa.data.dtd declared as RegExpr
protected  RegExpr Clousure.expr
           
protected  RegExpr Concat.expr1
           
protected  RegExpr Concat.expr2
           
static RegExpr NDFA.EPSILON
          A constant representing epsilon regular expression.
protected  RegExpr Union.expr1
           
protected  RegExpr Union.expr2
           
 

Constructors in edu.buffalo.nsf.xmlcqa.data.dtd with parameters of type RegExpr
Clousure(RegExpr expr)
          Standard constructor.
Concat(RegExpr expr1, RegExpr expr2)
          Standard constructor.
Union(RegExpr expr1, RegExpr expr2)
          Standard constructor.