8136494: Update "@since 1.9" to "@since 9" to match java.version.specification

Reviewed-by: alanb, chegar, lancea
This commit is contained in:
Iris Clark 2016-01-19 20:29:11 -08:00
parent 549f32f946
commit 3c586d6531
11 changed files with 17 additions and 17 deletions

View file

@ -351,7 +351,7 @@ public interface XPath {
* {@link XPathEvaluationResult.XPathResultType#ANY ANY} type is not available.
* @throws NullPointerException If {@code expression or type} is {@code null}.
*
* @since 1.9
* @since 9
*/
default <T>T evaluateExpression(String expression, Object item, Class<T> type)
throws XPathExpressionException {
@ -399,7 +399,7 @@ public interface XPath {
* {@link XPathEvaluationResult.XPathResultType#ANY ANY} type.
* @throws NullPointerException If {@code expression} is {@code null}.
*
* @since 1.9
* @since 9
*/
default XPathEvaluationResult<?> evaluateExpression(String expression, Object item)
throws XPathExpressionException
@ -445,7 +445,7 @@ public interface XPath {
* {@link XPathEvaluationResult.XPathResultType#ANY ANY} type is not available.
* @throws NullPointerException If {@code expression, source or type}is {@code null}.
*
* @since 1.9
* @since 9
*/
default <T>T evaluateExpression(String expression, InputSource source, Class<T> type)
throws XPathExpressionException
@ -486,7 +486,7 @@ public interface XPath {
* {@link XPathEvaluationResult.XPathResultType#ANY ANY} type.
* @throws NullPointerException If {@code expression or source} is {@code null}.
*
* @since 1.9
* @since 9
*/
default XPathEvaluationResult<?> evaluateExpression(String expression, InputSource source)
throws XPathExpressionException

View file

@ -37,7 +37,7 @@ import org.w3c.dom.Node;
* @see <a href="http://www.w3.org/TR/xpath">XML Path Language (XPath) Version
* 1.0</a>
*
* @since 1.9
* @since 9
*/
public interface XPathEvaluationResult<T> {

View file

@ -246,7 +246,7 @@ public interface XPathExpression {
* {@link XPathEvaluationResult.XPathResultType#ANY ANY} type is not available.
* @throws NullPointerException If {@code type} is {@code null}.
*
* @since 1.9
* @since 9
*/
default <T>T evaluateExpression(Object item, Class<T> type)
throws XPathExpressionException
@ -292,7 +292,7 @@ public interface XPathExpression {
* does not support the
* {@link XPathEvaluationResult.XPathResultType#ANY ANY} type.
*
* @since 1.9
* @since 9
*/
default XPathEvaluationResult<?> evaluateExpression(Object item)
throws XPathExpressionException
@ -338,7 +338,7 @@ public interface XPathExpression {
* is not available.
* @throws NullPointerException If {@code source or type} is {@code null}.
*
* @since 1.9
* @since 9
*/
default <T>T evaluateExpression(InputSource source, Class<T> type)
throws XPathExpressionException
@ -377,7 +377,7 @@ public interface XPathExpression {
* {@link XPathEvaluationResult.XPathResultType#ANY ANY} type.
* @throws NullPointerException If {@code source} is {@code null}.
*
* @since 1.9
* @since 9
*/
default XPathEvaluationResult<?> evaluateExpression(InputSource source)
throws XPathExpressionException

View file

@ -33,7 +33,7 @@ import org.w3c.dom.Node;
* in <a href="http://www.w3.org/TR/xpath/#node-sets">XML Path Language (XPath)
* Version 1.0, 3.3 Node-sets</a>.
*
* @since 1.9
* @since 9
*/
public interface XPathNodes extends Iterable<Node> {