Class JDOMXPath

java.lang.Object
org.jaxen.BaseXPath
org.jaxen.jdom.JDOMXPath
All Implemented Interfaces:
Serializable, XPath

public class JDOMXPath extends BaseXPath
An XPath implementation for the JDOM model

This is the main entry point for matching an XPath against a DOM tree. You create a compiled XPath object, then match it against one or more context nodes using the BaseXPath.selectNodes(Object) method, as in the following example:

 Object jdomNode = ...; // Document, Element etc.
 XPath path = new JDOMXPath("a/b/c");
 List results = path.selectNodes(jdomNode);
 
Version:
$Revision: 1161 $
Author:
bob mcwhirter, James Strachan
See Also:
  • Constructor Details

    • JDOMXPath

      public JDOMXPath(String xpathExpr) throws JaxenException
      Construct given an XPath expression string.
      Parameters:
      xpathExpr - the XPath expression.
      Throws:
      JaxenException - if there is a syntax error while parsing the expression