Skip to content

Commit

Permalink
Remaining javax-to-jakarta renames
Browse files Browse the repository at this point in the history
Signed-off-by: David Blevins <david.blevins@gmail.com>
  • Loading branch information
dblevins committed Aug 29, 2020
1 parent 7c666a5 commit 42afba6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -453,8 +453,8 @@ jsp.warning.boolean=PWC6337: Invalid value for the initParam {0}. Will use the d
jsp.error.beans.property.conversion=PWC6338: Cannot convert \"{0}\" for the attribute {2} of the bean {1}: {3}
jsp.error.setter.none=PWC6339: Cannot find a setter method for the attribute {1} of the tag handler {0}
jsp.error.setter.notobject=PWC6340: According to the TLD, rtexprvalue is true, and deferred-value is specified for the attribute {1} of the tag handler {0}, but the argument for the setter method is not a java.lang.Object
jsp.error.setter.notvalueexpression= PWC6341: According to the TLD, deferred-value is specified for the attribute {1} of the tag handler {0}, but the argument for the setter method is not a javax.el.ValueExpression
jsp.error.setter.notmethodexpression=PWC6342: According to the TLD, deferred-method is specified for the attribute {1} of the tag handler {0}, but the argument for the setter method is not a javax.el.MethodExpression
jsp.error.setter.notvalueexpression= PWC6341: According to the TLD, deferred-value is specified for the attribute {1} of the tag handler {0}, but the argument for the setter method is not a jakarta.el.ValueExpression
jsp.error.setter.notmethodexpression=PWC6342: According to the TLD, deferred-method is specified for the attribute {1} of the tag handler {0}, but the argument for the setter method is not a jakarta.el.MethodExpression
jsp.error.setter.notequal=PWC6343: The type in the TLD for attribute {1} of the tag handler {0} does not match the argument type of its setter method
jsp.error.unableToCreateOutputWriter=PWC6344: Unable to create output writer for file {0}
jsp.error.nojdk=PWC6345: There is an error in invoking javac. A full JDK (not just JRE) is required
Expand Down
4 changes: 2 additions & 2 deletions spec/src/main/asciidoc/ServerPages.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3425,7 +3425,7 @@ expression using the `#{}` syntax.
equal to the type specified in the TLD). The expression is not
evaluated. The result of parsing the expression is passed directly to
the setter method of the tag attribute, whose argument type must be
`javax.el.ValueExpression`. This allows for deferred evaluation of EL
`jakarta.el.ValueExpression`. This allows for deferred evaluation of EL
expressions. When the expression is evaluated by the tag handler, the
value is coerced to the expected type. If a static value is provided, it
is converted to a `ValueExpression` where `isLiteralText()` returns
Expand Down Expand Up @@ -11003,7 +11003,7 @@ Jakarta Server Pages specification. This appendix is non-normative.

=== Changes between JSP 3.0 and JSR 245

* The API has moved from the `javax.servlet.jsp` package to the
* The API has moved from the `jakarta.servlet.jsp` package to the
`jakarta.servlet.jsp` package.
* All deprecated methods now include the `@Deprecated` annotation.
* All API methods use generics where appropriate.
Expand Down

0 comments on commit 42afba6

Please sign in to comment.