org.apache.xpath.domapi
Class XPathNSResolverImpl

java.lang.Object
  extended byorg.apache.xml.utils.PrefixResolverDefault
      extended byorg.apache.xpath.domapi.XPathNSResolverImpl
All Implemented Interfaces:
PrefixResolver

public class XPathNSResolverImpl
extends PrefixResolverDefault

The class provides an implementation XPathNSResolver according to the DOM L3 XPath API Specification, Working Draft 28, March 2002.

The XPathNSResolver interface permit prefix strings in the expression to be properly bound to namespaceURI strings. XPathEvaluator can construct an implementation of XPathNSResolver from a node, or the interface may be implemented by any application.

See also the Document Object Model (DOM) Level 3 XPath Specification.

See Also:
org.w3c.dom.xpath.XPathNSResolver

Field Summary
 
Fields inherited from class org.apache.xml.utils.PrefixResolverDefault
S_XMLNAMESPACEURI
 
Constructor Summary
XPathNSResolverImpl(org.w3c.dom.Node xpathExpressionContext)
          Constructor for XPathNSResolverImpl.
 
Method Summary
 String lookupNamespaceURI(String prefix)
           
 
Methods inherited from class org.apache.xml.utils.PrefixResolverDefault
getBaseIdentifier, getNamespaceForPrefix, getNamespaceForPrefix, handlesNullPrefixes
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

XPathNSResolverImpl

public XPathNSResolverImpl(org.w3c.dom.Node xpathExpressionContext)
Constructor for XPathNSResolverImpl.

Parameters:
xpathExpressionContext -
Method Detail

lookupNamespaceURI

public String lookupNamespaceURI(String prefix)
See Also:
org.w3c.dom.xpath.XPathNSResolver#lookupNamespaceURI(String)