< prev index next >

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

Print this page

        

@@ -30,11 +30,10 @@
 /**
  * The {@code XPathEvaluationResult} interface represents the result of the
  * evaluation of an XPath expression within the context of a particular node.
  * The evaluation of an XPath expression can result in various result types as
  * defined in XML Path Language (XPath) Version 1.0.
- * <p>
  *
  * @param <T> the object type returned by the XPath evaluation.
  * @see <a href="http://www.w3.org/TR/xpath">XML Path Language (XPath) Version
  * 1.0</a>
  *

@@ -119,11 +118,11 @@
      * @return the result type
      */
     public XPathResultType type();
 
     /**
-     * Returns the value of the result as the type &lt;T&gt; specified for the class.
+     * Returns the value of the result as the type {@code <T>} specified for the class.
      *
      * @return The value of the result.
      */
     public T value();
 
< prev index next >