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

Packages that use NodeNamePool
jd.xml.xpath.axis Contains classes that implement the path expressions. 
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.parser Contains the XPath expression parser. 
jd.xml.xslt Contains a XSLT Version 1.1 implementation. 
jd.xml.xslt.expr Contains the XPath functions and expressions defined by XSLT. 
jd.xml.xslt.parser Contains parser classes for stylesheets, stylesheet templates elements and patterns. 
jd.xml.xslt.result Contains classes to output the result of an XSLT tranformation. 
jd.xml.xslt.result.pipe Contains classes to transform a XML document representation into ResultBuilder events. 
jd.xml.xslt.util Contains XSLT related utility classes. 
 

Uses of NodeNamePool in jd.xml.xpath.axis
 

Methods in jd.xml.xpath.axis with parameters of type NodeNamePool
static NodeNameTest NodeNameTest.getTest(String uri, String qname, String prefix, String localName, NodeNamePool pool)
          Create a NodeNameTest
 

Uses of NodeNamePool in jd.xml.xpath.model
 

Methods in jd.xml.xpath.model that return NodeNamePool
 NodeNamePool XPathRootNode.getNodeNamePool()
          Return the NodeNamePool used by this node tree.
 

Methods in jd.xml.xpath.model with parameters of type NodeNamePool
 boolean NodeNamePool.isCreatedFrom(NodeNamePool pool)
          Test if this namepool contains the other pool
 XPathRootNode ModelReader.read(XmlSource source, NodeNamePool nodeNamePool)
          Read a xml document.
 XPathRootNode ModelReader.getTextNodeFragment(String text, NodeNamePool nodeNamePool)
          Return a text node fragment, i.e.
 

Constructors in jd.xml.xpath.model with parameters of type NodeNamePool
NodeNamePool(NodeNamePool pool)
          Create a NodeNamePool from another pool.
 

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

Methods in jd.xml.xpath.model.build with parameters of type NodeNamePool
 XPathRootNode ModelBuilderFactory.createTextNodeFragment(String text, NodeNamePool pool, int documentId)
          Create a text node fragment.
abstract  void ModelBuilder.startBuild(String baseUri, NodeNamePool nodeNamePool, int documentId, ModelLocator locator, boolean collectLineNumbers)
           
 

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

Methods in jd.xml.xpath.model.build.normal that return NodeNamePool
 NodeNamePool RootNode.getNodeNamePool()
          Return null.
 

Methods in jd.xml.xpath.model.build.normal with parameters of type NodeNamePool
 XPathRootNode NormalModelBuilderFactory.createTextNodeFragment(String text, NodeNamePool pool, int documentId)
           
 void NormalModelBuilder.startBuild(String baseUri, NodeNamePool nodeNamePool, int documentId, ModelLocator locator, boolean collectLineNumbers)
          Receive notification of the beginning of a document.
 

Constructors in jd.xml.xpath.model.build.normal with parameters of type NodeNamePool
RootNode(String baseUri, NodeNamePool nodeNamePool, int documentId)
           
 

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

Fields in jd.xml.xpath.model.parse declared as NodeNamePool
protected  NodeNamePool ParseHandler.nodeNamePool_
           
 

Methods in jd.xml.xpath.model.parse with parameters of type NodeNamePool
 XPathRootNode ParseHandler.parse(XmlSource source, NodeNamePool nodeNamePool, ModelBuilder modelBuilder, int documentId, boolean collectLineNumbers)
           
 

Uses of NodeNamePool in jd.xml.xpath.parser
 

Methods in jd.xml.xpath.parser that return NodeNamePool
 NodeNamePool XPathParseContext.getNodeNamePool()
          Return a NodeNamePool which is used to build optimized NodeNameTests.
 

Uses of NodeNamePool in jd.xml.xslt
 

Fields in jd.xml.xslt declared as NodeNamePool
protected  NodeNamePool AbstractStylesheet.nodeNamePool_
           
 

Methods in jd.xml.xslt that return NodeNamePool
 NodeNamePool TransformationChain.getNodeNamePool()
          Return the NodeNamePool of the first transformation in this chain.
abstract  NodeNamePool Transformation.getNodeNamePool()
          Return the NodeNamePool of the transformation.
 NodeNamePool IdentityTransformation.getNodeNamePool()
          Return null.
 NodeNamePool AbstractStylesheet.getNodeNamePool()
          Return the NodeNamePool of the stylesheet.
 

Uses of NodeNamePool in jd.xml.xslt.expr
 

Constructors in jd.xml.xslt.expr with parameters of type NodeNamePool
XResultTreeFragment(NodeNamePool nodeNamePool, ResultTreeRecorder recorder)
          Create a XResultTreeFragment.
 

Uses of NodeNamePool in jd.xml.xslt.parser
 

Methods in jd.xml.xslt.parser that return NodeNamePool
 NodeNamePool XsltParseContext.getNodeNamePool()
          Return a NodeNamePool which is used to build optimized NodeNameTests.
static NodeNamePool StylesheetParser.createNodeNamePool()
          Create a NodeNamePool with the appropriate whitespace test for stylesheet documents.
 NodeNamePool StylesheetData.getNodeNamePool()
           
 

Methods in jd.xml.xslt.parser with parameters of type NodeNamePool
 void XsltParseContext.initXsltNamePattern(NodeNamePool pool)
          Initialize the name pattern, that is used to decide if a
(package private)  void XsltParseContext.setStylesheetNamePool(NodeNamePool pool)
          Set the NodeNamePool of the stylesheet documents.
(package private)  void StylesheetData.setNodeNamePool(NodeNamePool nodeNamePool)
           
 

Uses of NodeNamePool in jd.xml.xslt.result
 

Constructors in jd.xml.xslt.result with parameters of type NodeNamePool
ModelResultBuilder(String uri, NodeNamePool nodeNamePool)
          Create a ModelResultBuilder.
ModelResultBuilder(String uri, NodeNamePool nodeNamePool, ModelBuilder modelBuilder)
          Create a ModelResultBuilder.
 

Uses of NodeNamePool in jd.xml.xslt.result.pipe
 

Methods in jd.xml.xslt.result.pipe with parameters of type NodeNamePool
static XPathRootNode Dom2ResultPipe.getRoot(String baseUri, Node domNode, NodeNamePool nodeNamePool)
           
 

Uses of NodeNamePool in jd.xml.xslt.util
 

Methods in jd.xml.xslt.util that return NodeNamePool
 NodeNamePool ModelCache.getNodeNamePool()
          Return the NodeNamePool which is used as name pool for built documents.
 

Constructors in jd.xml.xslt.util with parameters of type NodeNamePool
ModelCache(NodeNamePool namePool, Object parser)
          Create a ModelCache.