eduardop 01/07/20 14:47:33
Modified: src/share/javax/servlet/jsp/tagext BodyTag.java
IterationTag.java Tag.java VariableInfo.java
Log:
very small typo changes, to keep spec and javadoc in sync.
In 3 files <body-content> should be spelled <body-content>
In one file, changed "page" into "scope"
Revision Changes Path
1.4 +1 -1
jakarta-servletapi-4/src/share/javax/servlet/jsp/tagext/BodyTag.java
Index: BodyTag.java
===================================================================
RCS file:
/home/cvs/jakarta-servletapi-4/src/share/javax/servlet/jsp/tagext/BodyTag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- BodyTag.java 2001/07/13 23:57:18 1.3
+++ BodyTag.java 2001/07/20 21:47:33 1.4
@@ -116,7 +116,7 @@
* <p><B>Empty and Non-Empty Action</B>
* <p> If the TagLibraryDescriptor file indicates that the action must
- * always have an empty action, by an <body-content> entry of "empty",
+ * always have an empty action, by an <body-content> entry of "empty",
* then the doStartTag() method must return SKIP_BODY.
*
* Otherwise, the doStartTag() method may return SKIP_BODY,
1.4 +1 -1
jakarta-servletapi-4/src/share/javax/servlet/jsp/tagext/IterationTag.java
Index: IterationTag.java
===================================================================
RCS file:
/home/cvs/jakarta-servletapi-4/src/share/javax/servlet/jsp/tagext/IterationTag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- IterationTag.java 2001/07/13 23:57:18 1.3
+++ IterationTag.java 2001/07/20 21:47:33 1.4
@@ -90,7 +90,7 @@
*
* <p><B>Empty and Non-Empty Action</B>
* <p> If the TagLibraryDescriptor file indicates that the action must
- * always have an empty action, by an <body-content> entry of "empty",
+ * always have an empty action, by an <body-content> entry of "empty",
* then the doStartTag() method must return SKIP_BODY.
*
* Otherwise, the doStartTag() method may return SKIP_BODY or
1.4 +1 -1 jakarta-servletapi-4/src/share/javax/servlet/jsp/tagext/Tag.java
Index: Tag.java
===================================================================
RCS file:
/home/cvs/jakarta-servletapi-4/src/share/javax/servlet/jsp/tagext/Tag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Tag.java 2001/07/13 23:57:18 1.3
+++ Tag.java 2001/07/20 21:47:33 1.4
@@ -113,7 +113,7 @@
*
* <p><B>Empty and Non-Empty Action</B>
* <p> If the TagLibraryDescriptor file indicates that the action must
- * always have an empty action, by an <body-content> entry of "empty",
+ * always have an empty action, by an <body-content> entry of "empty",
* then the doStartTag() method must return SKIP_BODY.
*
* Otherwise, the doStartTag() method may return SKIP_BODY or
1.2 +3 -3
jakarta-servletapi-4/src/share/javax/servlet/jsp/tagext/VariableInfo.java
Index: VariableInfo.java
===================================================================
RCS file:
/home/cvs/jakarta-servletapi-4/src/share/javax/servlet/jsp/tagext/VariableInfo.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- VariableInfo.java 2001/01/09 03:24:22 1.1
+++ VariableInfo.java 2001/07/20 21:47:33 1.2
@@ -122,16 +122,16 @@
* <IMG src="doc-files/VariableInfo-1.gif"/>
*
*<p>
- * The defined values for scope are:
+ * The JSP 1.2 specification defines the interpretation of 3 values:
*
* <ul>
* <li> NESTED, if the scripting variable is available between
* the start tag and the end tag of the action that defines it.
* <li>
* AT_BEGIN, if the scripting variable is available from the start tag
- * of the action that defines it until the end of the page.
+ * of the action that defines it until the end of the scope.
* <li> AT_END, if the scripting variable is available after the end tag
- * of the action that defines it until the end of the page.
+ * of the action that defines it until the end of the scope.
* </ul>
*
* The scope value for a variable implies what methods may affect its