dgraham 2002/10/20 12:11:15
Modified: src/share/org/apache/struts/action ActionMessages.java
Log:
Added @since Struts 1.1 to new methods
Revision Changes Path
1.7 +9 -6
jakarta-struts/src/share/org/apache/struts/action/ActionMessages.java
Index: ActionMessages.java
===================================================================
RCS file:
/home/cvs/jakarta-struts/src/share/org/apache/struts/action/ActionMessages.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ActionMessages.java 20 Oct 2002 19:03:44 -0000 1.6
+++ ActionMessages.java 20 Oct 2002 19:11:15 -0000 1.7
@@ -126,9 +126,10 @@
/**
* Create an <code>ActionMessages</code> object initialized with the given
- * messages .
+ * messages.
*
* @param messages The messages to be initially added to this object.
+ * @since Struts 1.1
*/
public ActionMessages(ActionMessages messages) {
super();
@@ -168,8 +169,9 @@
* <code>ActionMessages</code> object it is added to the end of the list for
that
* property. If a message's property is not in the current list it is added
to the end
* of the properties.
- * @param messages The <code>ActionMessages</code> object to be added.
*
+ * @param messages The <code>ActionMessages</code> object to be added.
+ * @since Struts 1.1
*/
public void add(ActionMessages messages) {
// loop over properties
@@ -208,6 +210,7 @@
/**
* Return <code>true</code> if there are no messages recorded
* in this collection, or <code>false</code> otherwise.
+ * @since Struts 1.1
*/
public boolean isEmpty(){
return (messages.isEmpty());
--
To unsubscribe, e-mail: <mailto:struts-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-dev-help@;jakarta.apache.org>