Uses of Class
jd.xml.xpath.model.NodeName

Packages that use NodeName
jd.xml.xpath.axis Contains classes that implement the path expressions. 
jd.xml.xpath.axis.name Contains implementations for NodeNameTest. 
jd.xml.xpath.model Contains classes for the XPath node model. 
jd.xml.xpath.model.build Contains classes to build a XPath model. 
jd.xml.xpath.model.build.normal Contains the default implementation for XPath node model. 
jd.xml.xpath.model.parse Contains classes to parse a XML document and construct a XPath model. 
jd.xml.xpath.model.walk Contains walker classes for the XPath tree model. 
jd.xml.xslt.parser Contains parser classes for stylesheets, stylesheet templates elements and patterns. 
jd.xml.xslt.pattern Contains classes for XSLT template patterns. 
jd.xml.xslt.template Contains classes representing the various XSLT template elements and instructions. 
 

Uses of NodeName in jd.xml.xpath.axis
 

Methods in jd.xml.xpath.axis with parameters of type NodeName
 void NodeTestVisitor.testNodeName(NodeName name, String namespaceUri, String localName)
          Called by a visited NodeNameTest.
 

Uses of NodeName in jd.xml.xpath.axis.name
 

Constructors in jd.xml.xpath.axis.name with parameters of type NodeName
PooledUriTest(NodeName name)
          Create a PooledUriTest for the specified name.
PooledNameTest(NodeName name)
          Create a PooledNameTest.
 

Uses of NodeName in jd.xml.xpath.model
 

Fields in jd.xml.xpath.model declared as NodeName
(package private)  NodeName NodeName.next_
           
 

Methods in jd.xml.xpath.model that return NodeName
 NodeName XPathNode.getNodeName()
          Return the nodename of the node.
 NodeName NodeNamePool.getName(String namespaceUri, String localName, String qname)
           
 NodeName NodeNamePool.getName(String namespaceUri, String localName, String qname, boolean isCDataSectionName)
           
 NodeName NodeNamePool.getNamePattern(String namespaceUri)
           
 NodeName[] NodeNamePool.getNames()
          Return an array with all names with getNames()[i].index = i
 NodeName NodeNamePool.getNameForId(int id)
           
 

Methods in jd.xml.xpath.model with parameters of type NodeName
 boolean XPathNode.hasName(NodeName name)
          Test if the node name equals the given name.
 boolean XPathNode.hasNamespaceUri(NodeName name)
          Test if the namespace uri of this node equals the uri of the given NodeName.
 

Constructors in jd.xml.xpath.model with parameters of type NodeName
NodeName(NodeName nodeName, String qname, int index)
          Create a copy of a NodeName with a non null namespace uri.
 

Uses of NodeName in jd.xml.xpath.model.build
 

Fields in jd.xml.xpath.model.build declared as NodeName
 NodeName ElementInfo.name
           
 NodeName[] ElementInfo.attrNames
           
 

Methods in jd.xml.xpath.model.build that return NodeName
 NodeName AbstractXPathNode.getNodeName()
          Return null.
 

Methods in jd.xml.xpath.model.build with parameters of type NodeName
 void ElementInfo.setName(NodeName name)
           
 void ElementInfo.addAttribute(NodeName name, String value, String type)
           
 boolean AbstractXPathNode.hasName(NodeName name)
          Return false.
 boolean AbstractXPathNode.hasNamespaceUri(NodeName name)
          Return false.
 

Uses of NodeName in jd.xml.xpath.model.build.normal
 

Fields in jd.xml.xpath.model.build.normal declared as NodeName
protected  NodeName ElementNode.name_
           
 

Methods in jd.xml.xpath.model.build.normal that return NodeName
 NodeName ElementNode.getNodeName()
          Return the attribute node name.
 NodeName AttributeNode.getNodeName()
          Return the attribute node name.
 

Methods in jd.xml.xpath.model.build.normal with parameters of type NodeName
 boolean NamespaceNode.hasName(NodeName name)
          Test if the node name equals the given name.
 boolean NamespaceNode.hasNamespaceUri(NodeName name)
          Test if the namespace uri of this node equals the uri of the given NodeName.
 boolean ElementNode.hasName(NodeName name)
          Test if the node name equals the given name.
 boolean ElementNode.hasNamespaceUri(NodeName name)
          Test if the namespace uri of this node equals the uri of the given NodeName.
 boolean AttributeNode.hasName(NodeName name)
          Test if the node name equals the given name.
 boolean AttributeNode.hasNamespaceUri(NodeName name)
          Test if the namespace uri of this node equals the uri of the given NodeName.
 

Constructors in jd.xml.xpath.model.build.normal with parameters of type NodeName
ElementNode(NodeName name)
           
ComplexElementNode(NodeName name, NamespaceContext namespaceContext)
          Create a ComplexElementNode.
AttributeNode(NodeName name, String value, ElementNode parent)
           
 

Uses of NodeName in jd.xml.xpath.model.parse
 

Methods in jd.xml.xpath.model.parse that return NodeName
protected  NodeName ParseHandler.getNodeName(String namespaceUri, String localName, String qname)
           
protected  NodeName ParseHandler.getNodeName(String qname, boolean isElementName)
           
 

Uses of NodeName in jd.xml.xpath.model.walk
 

Constructors in jd.xml.xpath.model.walk with parameters of type NodeName
NameTestWalker(NodeName nodeName, ModelWalker walker)
           
 

Uses of NodeName in jd.xml.xslt.parser
 

Methods in jd.xml.xslt.parser with parameters of type NodeName
 void TextContentBuilder.startElement(NodeName nodeName, NamespaceContext namespaceContext, AttributeSet[] attributeSets, LiteralAttribute attribute)
          Start a literal element.
 

Uses of NodeName in jd.xml.xslt.pattern
 

Fields in jd.xml.xslt.pattern declared as NodeName
 NodeName PatternClassifier.Match.nodeName
           
 

Methods in jd.xml.xslt.pattern with parameters of type NodeName
 void PatternClassifier.testNodeName(NodeName name, String namespaceUri, String localName)
           
 

Uses of NodeName in jd.xml.xslt.template
 

Methods in jd.xml.xslt.template with parameters of type NodeName
 void TemplateVisitor.startElement(NodeName nodeName, NamespaceContext namespaceContext_, AttributeSet[] attributeSets, LiteralAttribute attribute)
           
 void TemplateScreener.startElement(NodeName nodeName, NamespaceContext namespaceContext_, AttributeSet[] attributeSets, LiteralAttribute attribute)
           
 

Constructors in jd.xml.xslt.template with parameters of type NodeName
LiteralElement(NodeName nodeName, NamespaceContext namespaceContext, LiteralAttribute attribute, AttributeSet[] attributeSets)
          Create a LiteralElement object.