View | Details | Raw Unified | Return to bug 51155
Collapse All | Expand All

(-)java/javax/servlet/jsp/el/ELException.java (-1 / +1 lines)
Lines 22-28 Link Here
22
 * evaluation of the evaluator.
22
 * evaluation of the evaluator.
23
 * 
23
 * 
24
 * @since 2.0
24
 * @since 2.0
25
 * @deprecated
25
 * @deprecated As of JSP 2.1, replaced by javax.el.ELException
26
 */
26
 */
27
@SuppressWarnings("dep-ann") // TCK signature test fails with annotation
27
@SuppressWarnings("dep-ann") // TCK signature test fails with annotation
28
public class ELException extends Exception {
28
public class ELException extends Exception {
(-)java/javax/servlet/jsp/el/ELParseException.java (-1 / +1 lines)
Lines 22-28 Link Here
22
 * Represents a parsing error encountered while parsing an EL expression.
22
 * Represents a parsing error encountered while parsing an EL expression.
23
 *
23
 *
24
 * @since 2.0
24
 * @since 2.0
25
 * @deprecated
25
 * @deprecated As of JSP 2.1, replaced by javax.el.ELException
26
 */
26
 */
27
@SuppressWarnings("dep-ann") // TCK signature test fails with annotation
27
@SuppressWarnings("dep-ann") // TCK signature test fails with annotation
28
public class ELParseException extends ELException {
28
public class ELParseException extends ELException {
(-)java/javax/servlet/jsp/el/Expression.java (-1 / +1 lines)
Lines 30-36 Link Here
30
 * where ELParseException exceptions are raised. </p>
30
 * where ELParseException exceptions are raised. </p>
31
 *
31
 *
32
 * @since 2.0
32
 * @since 2.0
33
 * @deprecated
33
 * @deprecated As of JSP 2.1, replaced by javax.el.ValueExpression
34
 */
34
 */
35
@SuppressWarnings("dep-ann") // TCK signature test fails with annotation
35
@SuppressWarnings("dep-ann") // TCK signature test fails with annotation
36
public abstract class Expression {
36
public abstract class Expression {
(-)java/javax/servlet/jsp/el/ExpressionEvaluator.java (-1 / +1 lines)
Lines 52-58 Link Here
52
 * </p>
52
 * </p>
53
 * 
53
 * 
54
 * @since 2.0
54
 * @since 2.0
55
 * @deprecated
55
 * @deprecated As of JSP 2.1, replaced by javax.el.ExpressionFactory
56
 */
56
 */
57
@SuppressWarnings("dep-ann")
57
@SuppressWarnings("dep-ann")
58
// TCK signature test fails with annotation
58
// TCK signature test fails with annotation
(-)java/javax/servlet/jsp/el/FunctionMapper.java (-1 / +1 lines)
Lines 24-30 Link Here
24
 * information to resolve the map. </p>
24
 * information to resolve the map. </p>
25
 *
25
 *
26
 * @since 2.0
26
 * @since 2.0
27
 * @deprecated
27
 * @deprecated As of JSP 2.1, replaced by javax.el.FunctionMapper
28
 */
28
 */
29
@SuppressWarnings("dep-ann") // TCK signature test fails with annotation
29
@SuppressWarnings("dep-ann") // TCK signature test fails with annotation
30
public interface FunctionMapper {
30
public interface FunctionMapper {
(-)java/javax/servlet/jsp/el/VariableResolver.java (-1 / +1 lines)
Lines 30-36 Link Here
30
 * </p>
30
 * </p>
31
 * 
31
 * 
32
 * @since 2.0
32
 * @since 2.0
33
 * @deprecated
33
 * @deprecated As of JSP 2.1, replaced by javax.el.ELResolver
34
 */
34
 */
35
@SuppressWarnings("dep-ann")
35
@SuppressWarnings("dep-ann")
36
// TCK signature test fails with annotation
36
// TCK signature test fails with annotation

Return to bug 51155