FileDocCategorySizeDatePackage
XPathNSResolverImpl.javaAPI DocJava SE 6 API2068Tue Jun 10 00:23:14 BST 2008com.sun.org.apache.xpath.internal.domapi

XPathNSResolverImpl

public class XPathNSResolverImpl extends PrefixResolverDefault implements XPathNSResolver
The class provides an implementation XPathNSResolver according to the DOM L3 XPath Specification, Working Group Note 26 February 2004.

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

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
org.w3c.dom.xpath.XPathNSResolver
xsl.usage
internal

Fields Summary
Constructors Summary
public XPathNSResolverImpl(Node xpathExpressionContext)
Constructor for XPathNSResolverImpl.

param
xpathExpressionContext

		super(xpathExpressionContext);
	
Methods Summary
public java.lang.StringlookupNamespaceURI(java.lang.String prefix)

see
org.w3c.dom.xpath.XPathNSResolver#lookupNamespaceURI(String)

		return super.getNamespaceForPrefix(prefix);