* @deprecated As of JSP 2.1, replaced by
* JspApplicationContext.getExpressionFactory()
*/
- @Deprecated
+ @SuppressWarnings("dep-ann") // TCK signature test fails with annotation
public abstract ExpressionEvaluator getExpressionEvaluator();
* which can be obtained by
* jspContext.getELContext().getELResolver()
*/
- @Deprecated
+ @SuppressWarnings("dep-ann") // TCK signature test fails with annotation
public abstract VariableResolver getVariableResolver();
/**
* JspExceptions will result in an invocation of the errorpage
* machinery.
*/
-
public class JspException extends Exception {
/**
/**
- * @deprecated As of JSP 2.1, replaced by
- * <code>java.lang.Throwable.getCause()</code>
- *
* Returns the exception that caused this JSP exception.
*
* @return the <code>Throwable</code> that caused this JSP exception
+ *
+ * @deprecated As of JSP 2.1, replaced by
+ * <code>java.lang.Throwable.getCause()</code>
*/
-
- @Deprecated
+ @SuppressWarnings("dep-ann") // TCK signature test fails with annotation
public Throwable getRootCause() {
return getCause();
}