Author: kkolinko
Date: Fri Jan 1 19:24:48 2010
New Revision: 895057
URL: http://svn.apache.org/viewvc?rev=895057&view=rev
Log:
Followup to r895045
Per JavaDoc format, the tags (@deprected, @see etc.) should follow the main
description, not precede it. Otherwise the description is swallowed by the tag.
Modified:
tomcat/trunk/java/javax/servlet/jsp/JspContext.java
Modified: tomcat/trunk/java/javax/servlet/jsp/JspContext.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/javax/servlet/jsp/JspContext.java?rev=895057&r1=895056&r2=895057&view=diff
==============================================================================
--- tomcat/trunk/java/javax/servlet/jsp/JspContext.java (original)
+++ tomcat/trunk/java/javax/servlet/jsp/JspContext.java Fri Jan 1 19:24:48 2010
@@ -217,14 +217,14 @@
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 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();
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]