< prev index next >

src/java.xml/share/classes/javax/xml/xpath/XPath.java

Print this page

        

*** 30,40 **** import org.xml.sax.InputSource; /** * {@code XPath} provides access to the XPath evaluation environment and expressions. * ! * <a name="XPath-evaluation"/> * <table border="1" cellpadding="2"> * <thead> * <tr> * <th colspan="2">Evaluation of XPath Expressions.</th> * </tr> --- 30,40 ---- import org.xml.sax.InputSource; /** * {@code XPath} provides access to the XPath evaluation environment and expressions. * ! * <a name="XPath-evaluation"></a> * <table border="1" cellpadding="2"> * <thead> * <tr> * <th colspan="2">Evaluation of XPath Expressions.</th> * </tr>
*** 88,98 **** * In other words, it is the application's responsibility to make * sure that one {@link XPath} object is not used from * more than one thread at any given time, and while the {@code evaluate} * method is invoked, applications may not recursively call * the {@code evaluate} method. - * <p> * * @author <a href="Norman.Walsh@Sun.com">Norman Walsh</a> * @author <a href="Jeff.Suttor@Sun.com">Jeff Suttor</a> * @see <a href="http://www.w3.org/TR/xpath">XML Path Language (XPath) Version 1.0</a> * @since 1.5 --- 88,97 ----
*** 460,470 **** * calling {@link #evaluateExpression(String expression, Object item, Class type)} * with type {@link XPathEvaluationResult}: * <pre> {@code * evaluateExpression(expression, item, XPathEvaluationResult.class); * }</pre> - * <p> * * @implSpec * The default implementation in the XPath API is equivalent to: * <pre> {@code * evaluateExpression(expression, source, XPathEvaluationResult.class); --- 459,468 ----
< prev index next >