Followup to r895045
authorkkolinko <kkolinko@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 1 Jan 2010 19:24:48 +0000 (19:24 +0000)
committerkkolinko <kkolinko@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 1 Jan 2010 19:24:48 +0000 (19:24 +0000)
Per JavaDoc format, the tags (@deprected, @see etc.) should follow the main description, not precede it. Otherwise the description is swallowed by the tag.

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@895057 13f79535-47bb-0310-9956-ffa450edef68

java/javax/servlet/jsp/JspContext.java

index 96651ce..fe45ef5 100644 (file)
@@ -217,14 +217,14 @@ public abstract class JspContext {
     abstract public JspWriter getOut();
     
     /**
-     * @deprecated As of JSP 2.1, replaced by
-     *             JspApplicationContext.getExpressionFactory()
      * Provides programmatic access to the ExpressionEvaluator.
      * The JSP Container must return a valid instance of an 
      * ExpressionEvaluator that can parse EL expressions.
      *
      * @return A valid instance of an ExpressionEvaluator.
      * @since 2.0
+     * @deprecated As of JSP 2.1, replaced by
+     *             JspApplicationContext.getExpressionFactory()
      */
     @Deprecated
     public abstract ExpressionEvaluator getExpressionEvaluator();
@@ -233,16 +233,16 @@ public abstract class JspContext {
     public abstract ELContext getELContext();
     
     /**
-     * @deprecated As of JSP 2.1,
-     *             replaced by javax.el.ELContext.getELResolver()
-     *             which can be obtained by
-     *             jspContext.getELContext().getELResolver()
      * Returns an instance of a VariableResolver that provides access to the
      * implicit objects specified in the JSP specification using this JspContext
      * as the context object.
      *
      * @return A valid instance of a VariableResolver.
      * @since 2.0
+     * @deprecated As of JSP 2.1,
+     *             replaced by javax.el.ELContext.getELResolver()
+     *             which can be obtained by
+     *             jspContext.getELContext().getELResolver()
      */
     @Deprecated
     public abstract VariableResolver getVariableResolver();