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

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

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

Subclasses of NDFA 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 RegExpr
          An abstract class facilitating construction of regular expressions.
 class Tag
          Class representing tag label of a document.
 class Union
          A class representing a union of two regular expressions.
 

Methods in edu.buffalo.nsf.xmlcqa.data.dtd that return NDFA
 NDFA Clousure.getExpr()
          Access the expression of which the closure is defined.
 NDFA Concat.getExpr1()
          Returns the first subexpression.
 NDFA Concat.getExpr2()
          Return the second subexpression.
 NDFA DTD.getDefinition(Tag tag)
          Returs specification of children lables of a node labeled with tag.
 NDFA Union.getExpr1()
          Returns the first subexpression.
 NDFA Union.getExpr2()
          Returns the second subexpression.
 

Methods in edu.buffalo.nsf.xmlcqa.data.dtd with parameters of type NDFA
protected  int DTD.findMST(NDFA e, int[] res, boolean[] visited, boolean[] found)
           
 

Uses of NDFA in edu.buffalo.nsf.xmlcqa.graph
 

Methods in edu.buffalo.nsf.xmlcqa.graph with parameters of type NDFA
protected  void CQA.consume(NDFA def, DTD dtd, Tag t, NodeCollector child, Vertex[] curr, Vertex[] next, int r, int d)
           
protected static int[] RestaurationAutomaton.startState(NDFA def, DTD d)
           
protected static void RestaurationAutomaton.consume(NDFA def, DTD dtd, Tag t, int[] curr, int[] next, int r, int d)