Uses of Class
org.apache.xerces.impl.dtd.models.CMNode

Packages that use CMNode
org.apache.xerces.impl.dtd.models   
org.apache.xerces.impl.xs.models   
 

Uses of CMNode in org.apache.xerces.impl.dtd.models
 

Subclasses of CMNode in org.apache.xerces.impl.dtd.models
 class CMAny
          Content model any node.
 class CMBinOp
          Content model Bin-Op node.
 class CMLeaf
          Content model leaf node.
 class CMUniOp
          Content model Uni-Op node.
 

Constructors in org.apache.xerces.impl.dtd.models with parameters of type CMNode
CMBinOp(int type, CMNode leftNode, CMNode rightNode)
           
CMUniOp(int type, CMNode childNode)
           
DFAContentModel(CMNode syntaxTree, int leafCount, boolean mixed)
          Constructs a DFA content model.
 

Uses of CMNode in org.apache.xerces.impl.xs.models
 

Subclasses of CMNode in org.apache.xerces.impl.xs.models
 class XSCMBinOp
          Content model Bin-Op node.
 class XSCMLeaf
          Content model leaf node.
 class XSCMRepeatingLeaf
          A compound content model leaf node which carries occurence information.
 class XSCMUniOp
          Content model Uni-Op node.
 

Methods in org.apache.xerces.impl.xs.models that return CMNode
 CMNode CMNodeFactory.getCMBinOpNode(int type, CMNode leftNode, CMNode rightNode)
           
 CMNode CMNodeFactory.getCMLeafNode(int type, java.lang.Object leaf, int id, int position)
           
 CMNode CMNodeFactory.getCMRepeatingLeafNode(int type, java.lang.Object leaf, int minOccurs, int maxOccurs, int id, int position)
           
 CMNode CMNodeFactory.getCMUniOpNode(int type, CMNode childNode)
           
 

Methods in org.apache.xerces.impl.xs.models with parameters of type CMNode
 CMNode CMNodeFactory.getCMBinOpNode(int type, CMNode leftNode, CMNode rightNode)
           
 CMNode CMNodeFactory.getCMUniOpNode(int type, CMNode childNode)
           
 

Constructors in org.apache.xerces.impl.xs.models with parameters of type CMNode
XSCMBinOp(int type, CMNode leftNode, CMNode rightNode)
           
XSCMUniOp(int type, CMNode childNode)
           
XSDFACM(CMNode syntaxTree, int leafCount)
          Constructs a DFA content model.