Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.w3c.dom.xpath: Javadoc index of package org.w3c.dom.xpath.


Package Samples:

org.w3c.dom.xpath

Classes:

XPathNamespace: The XPathNamespace interface is returned by XPathResult interfaces to represent the XPath namespace node type that DOM lacks. There is no public constructor for this node type. Attempts to place it into a hierarchy or a NamedNodeMap result in a DOMException with the code HIERARCHY_REQUEST_ERR . This node is read only, so methods or setting of attributes that would mutate the node result in a DOMException with the code NO_MODIFICATION_ALLOWED_ERR . The core specification describes attributes of the Node interface that are different for different node types but does not describe XPATH_NAMESPACE_NODE ...
XPathEvaluator: The evaluation of XPath expressions is provided by XPathEvaluator . In a DOM implementation which supports the XPath 3.0 feature, as described above, the XPathEvaluator interface will be implemented on the same object which implements the Document interface permitting it to be obtained by the usual binding-specific method such as casting or by using the DOM Level 3 getInterface method. In this case the implementation obtained from the Document supports the XPath DOM module and is compatible with the XPath 1.0 specification. Evaluation of expressions with specialized extension functions or variables ...
XPathNSResolver: 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 .
XPathResult: The XPathResult interface represents the result of the evaluation of an XPath 1.0 expression within the context of a particular node. Since evaluation of an XPath expression can result in various result types, this object makes it possible to discover and manipulate the type and value of the result. See also the Document Object Model (DOM) Level 3 XPath Specification .
XPathExpression: The XPathExpression interface represents a parsed and resolved XPath expression. See also the Document Object Model (DOM) Level 3 XPath Specification .
XPathException: A new exception has been created for exceptions specific to these XPath interfaces. See also the Document Object Model (DOM) Level 3 XPath Specification .

Home | Contact Us | Privacy Policy | Terms of Service