Uses of Class
com.caucho.xpath.NamespaceContext

Packages that use NamespaceContext
com.caucho.jsp.java   
com.caucho.xpath Finding and selecting XML nodes using XSL patterns. 
com.caucho.xsl The XSLT transformation package. 
com.caucho.xsl.java   
 

Uses of NamespaceContext in com.caucho.jsp.java
 

Methods in com.caucho.jsp.java that return NamespaceContext
 NamespaceContext JspNode.getNamespaceContext()
          Returns the XPath namespace context.
 

Methods in com.caucho.jsp.java with parameters of type NamespaceContext
 java.lang.String JavaJspGenerator.addXPathExpr(java.lang.String value, NamespaceContext ns)
          Adds an expression to the expression list.
 

Uses of NamespaceContext in com.caucho.xpath
 

Methods in com.caucho.xpath that return NamespaceContext
 NamespaceContext NamespaceContext.getPrev()
           
 

Methods in com.caucho.xpath with parameters of type NamespaceContext
static java.lang.String NamespaceContext.find(NamespaceContext ns, java.lang.String prefix)
           
static Expr XPath.parseExpr(java.lang.String query, NamespaceContext namespace)
          Parses an XPath expression for later evaluation.
static Expr XPath.parseExpr(java.lang.String query, NamespaceContext namespace, AbstractPattern nodeList)
          Parses an XPath expression for later evaluation.
static Pattern XPath.parseMatch(java.lang.String query, NamespaceContext namespace)
          Create a node match pattern.
static Pattern XPath.parseSelect(java.lang.String query, NamespaceContext namespace)
          Create a node selection pattern.
 

Constructors in com.caucho.xpath with parameters of type NamespaceContext
NamespaceContext(NamespaceContext prev, java.lang.String prefix, java.lang.String url)
           
 

Uses of NamespaceContext in com.caucho.xsl
 

Fields in com.caucho.xsl declared as NamespaceContext
protected  NamespaceContext[] JavaStylesheet._namespaces
           
 

Methods in com.caucho.xsl with parameters of type NamespaceContext
 int JavaGenerator.addNamespace(NamespaceContext namespace)
           
 void JavaGenerator.printNamespace(NamespaceContext namespace)
           
 XMLWriter XslWriter.pushAttribute(java.lang.String name, NamespaceContext namespace)
          Adds a new attribute with the given name to the current node, making the attribute the current node.
 void XslWriter.pushElement(java.lang.String name, NamespaceContext namespace)
          Adds a new element to the current node, making the new element the current node.
 void XslWriter.setAttribute(java.lang.String name, NamespaceContext namespace, java.lang.String value)
          Adds a new attribute with the given name to the current node, making the attribute the current node.
 

Uses of NamespaceContext in com.caucho.xsl.java
 

Fields in com.caucho.xsl.java declared as NamespaceContext
protected  NamespaceContext XslNode._matchNamespace
           
protected  NamespaceContext XslNode._outputNamespace
           
 

Methods in com.caucho.xsl.java that return NamespaceContext
 NamespaceContext XslNode.getMatchNamespace()
          Returns the namespaces.
 NamespaceContext XslNode.getOutputNamespace()
          Returns the namespaces.
 

Methods in com.caucho.xsl.java with parameters of type NamespaceContext
protected  void XslNode.printNamespace(JavaWriter out, NamespaceContext namespace)