Here you can find the source of compile(String expression)
public static XPathExpression compile(String expression) throws XPathExpressionException
//package com.java2s; //License from project: Apache License import javax.xml.xpath.XPath; import javax.xml.xpath.XPathExpression; import javax.xml.xpath.XPathExpressionException; public class Main { private static XPath xPath; public static XPathExpression compile(String expression) throws XPathExpressionException { return xPath.compile(expression); }// w ww. ja va2s. co m }