Java tutorial
//package com.java2s; import javax.xml.xpath.XPath; import javax.xml.xpath.XPathFactory; public class Main { public static XPath instantiateXPath() { return XPathFactory.newInstance().newXPath(); } }