Fix some javadoc warnings
diff --git a/api/src/main/java/jakarta/el/ELContext.java b/api/src/main/java/jakarta/el/ELContext.java index 36cb770..ef0f6e3 100644 --- a/api/src/main/java/jakarta/el/ELContext.java +++ b/api/src/main/java/jakarta/el/ELContext.java
@@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2022 Oracle and/or its affiliates and others. + * Copyright (c) 1997, 2024 Oracle and/or its affiliates and others. * All rights reserved. * Copyright 2004 The Apache Software Foundation * @@ -410,6 +410,7 @@ * <p> * An <code>ELException</code> is thrown if an error occurs during the conversion. * + * @param <T> The target type for the conversion. * @param obj The object to convert. * @param targetType The target type for the conversion. *
diff --git a/api/src/main/java/jakarta/el/ELProcessor.java b/api/src/main/java/jakarta/el/ELProcessor.java index 5eebf85..c7229f7 100644 --- a/api/src/main/java/jakarta/el/ELProcessor.java +++ b/api/src/main/java/jakarta/el/ELProcessor.java
@@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2021 Oracle and/or its affiliates and others. + * Copyright (c) 2012, 2024 Oracle and/or its affiliates and others. * All rights reserved. * * This program and the accompanying materials are made available under the @@ -89,6 +89,7 @@ /** * Evaluates an Jakarta Expression Language expression. * + * @param <T> The type of the result of the expression evaluation. * @param expression The Jakarta Expression Language expression to be evaluated. * @return The result of the expression evaluation. */ @@ -101,6 +102,7 @@ /** * Evaluates an Jakarta Expression Language expression, and coerces the result to the specified type. * + * @param <T> The type of the result of the expression evaluation. * @param expression The Jakarta Expression Language expression to be evaluated. * @param expectedType Specifies the type that the resultant evaluation will be coerced to. * @return The result of the expression evaluation.
diff --git a/api/src/main/java/jakarta/el/ELResolver.java b/api/src/main/java/jakarta/el/ELResolver.java index 0724e5b..a9729be 100644 --- a/api/src/main/java/jakarta/el/ELResolver.java +++ b/api/src/main/java/jakarta/el/ELResolver.java
@@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2023 Oracle and/or its affiliates and others. + * Copyright (c) 1997, 2024 Oracle and/or its affiliates and others. * All rights reserved. * Copyright 2004 The Apache Software Foundation * @@ -255,6 +255,7 @@ * An <code>ELException</code> is thrown if an error occurs during the conversion. * </p> * + * @param <T> The target type for the conversion * @param context The context of this evaluation. * @param obj The object to convert. * @param targetType The target type for the conversion.
diff --git a/api/src/main/java/jakarta/el/ExpressionFactory.java b/api/src/main/java/jakarta/el/ExpressionFactory.java index 73e19e4..376c1ce 100644 --- a/api/src/main/java/jakarta/el/ExpressionFactory.java +++ b/api/src/main/java/jakarta/el/ExpressionFactory.java
@@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2021 Oracle and/or its affiliates and others. + * Copyright (c) 1997, 2024 Oracle and/or its affiliates and others. * All rights reserved. * Copyright 2004 The Apache Software Foundation * @@ -228,6 +228,7 @@ * <p> * An <code>ELException</code> is thrown if an error results from applying the conversion rules. * + * @param <T> The target type for the coercion. * @param obj The object to coerce. * @param targetType The target type for the coercion. *
diff --git a/api/src/main/java/jakarta/el/ValueExpression.java b/api/src/main/java/jakarta/el/ValueExpression.java index 8531424..551f0a8 100644 --- a/api/src/main/java/jakarta/el/ValueExpression.java +++ b/api/src/main/java/jakarta/el/ValueExpression.java
@@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2021 Oracle and/or its affiliates and others. + * Copyright (c) 1997, 2024 Oracle and/or its affiliates and others. * All rights reserved. * Copyright 2004 The Apache Software Foundation * @@ -70,6 +70,7 @@ * The resulting value is automatically coerced to the type returned by <code>getExpectedType()</code>, which was * provided to the <code>ExpressionFactory</code> when this expression was created. * + * @param <T> The type of the result of the expression evaluation. * @param context The context of this evaluation. * * @return The result of the expression evaluation.