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

org.jdom2.test.cases.xpath.TestJaxenCompiled 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.xpath.XPathFactory;
import org.jdom2.xpath.jaxen.JaxenXPathFactory;

@SuppressWarnings({"javadoc"})
public class TestJaxenCompiled extends AbstractTestXPathCompiled {
	
	public TestJaxenCompiled() {
		super(true);
	}

	private static final XPathFactory myfac = new JaxenXPathFactory();
	
	@Override
	XPathFactory getFactory() {
		return myfac;
	}

	public static void main(String[] args) {
		System.setProperty("jaxp.debug", "true");
		javax.xml.xpath.XPathFactory myfacx = javax.xml.xpath.XPathFactory.newInstance();
		System.out.println(myfacx);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy