| |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Objectnu.xom.XPathContext
Provides namespace prefix bindings for use in an XPath expression.
Constructor Summary | |
XPathContext()
Creates a new XPath context that binds the xml
prefix to the URI
http://www.w3.org/XML/1998/namespace . | |
XPathContext(String prefix,
String uri)
Creates a new XPath context that binds the specified prefix to the specified URI. |
Method Summary | |
void | addNamespace(String prefix,
String uri)
Binds the specified prefix to the specified namespace URI. |
static XPathContext | makeNamespaceContext(Element element)
Creates a new XPath context that contains all the namespace bindings in scope on the element. |
Methods inherited from class Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public XPathContext(String prefix,
String uri)
Creates a new XPath context that binds the specified prefix to
the specified URI. The xml
prefix is also bound to the URI
http://www.w3.org/XML/1998/namespace
.
prefix
- the prefix to binduri
- the namespace URI the prefix is bound to
public XPathContext()
Creates a new XPath context that binds the xml
prefix to the URI
http://www.w3.org/XML/1998/namespace
.
Method Detail |
public void addNamespace(String prefix,
String uri)
Binds the specified prefix to the specified namespace URI.
If the prefix is already bound in this context, the new URI
replaces the old URI. Binding a prefix to null removes the
declaration. The binding of the xml
prefix
may not be changed.
prefix
- the prefix to binduri
- the namespace URI the prefix is bound to
NamespaceConflictException
- if the prefix is
xml
and the URI is not
http://www.w3.org/XML/1998/namespace
or the
prefix is the empty string
NullPointerException
- if the prefix is null
public static XPathContext makeNamespaceContext(Element element)
Creates a new XPath context that contains all the namespace bindings in scope on the element. Changing the prefixes in scope on the element after the context is returned does not change the context.
element
- the element whose namespace bindings are copied
| |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |