org.jdom2.test.cases.xpath.TestLocalJaxenXPath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdom Show documentation
Show all versions of jdom Show documentation
A complete, Java-based solution for accessing, manipulating,
and outputting XML data
The newest version!
package org.jdom2.test.cases.xpath;
import org.jdom2.JDOMException;
import org.jdom2.xpath.XPath;
import org.jdom2.xpath.jaxen.JDOMXPath;
/**
*
* @author Rolf Lear
* @deprecated in lieu of TestJaxenCompiled
*/
@Deprecated
public class TestLocalJaxenXPath extends AbstractTestXPath {
@Override
@Deprecated
XPath buildPath(String path) throws JDOMException {
final XPath ret = new JDOMXPath(path);
return ret;
}
}