All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jdom2.test.cases.xpath.TestLocalJaxenXPath Maven / Gradle / Ivy

Go to download

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;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy