craigmcc 2002/07/16 09:52:18
Modified: src/share/org/apache/struts/action Action.java
Log:
Carry forward from Action.perform() to Action.execute() JavaDocs the
description of what the return value should be.
Revision Changes Path
1.44 +10 -4 jakarta-struts/src/share/org/apache/struts/action/Action.java
Index: Action.java
===================================================================
RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/action/Action.java,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- Action.java 9 Jul 2002 23:57:05 -0000 1.43
+++ Action.java 16 Jul 2002 16:52:18 -0000 1.44
@@ -353,6 +353,9 @@
* Process the specified HTTP request, and create the corresponding HTTP
* response (or forward to another web component that will create it),
* with provision for handling exceptions thrown by the business logic.
+ * Return an {@link ActionForward} instance describing where and how
+ * control should be forwarded, or <code>null</code> if the response
+ * has already been completed.
*
* @param mapping The ActionMapping used to select this instance
* @param form The optional ActionForm bean for this request (if any)
@@ -379,6 +382,9 @@
* Process the specified HTTP request, and create the corresponding HTTP
* response (or forward to another web component that will create it),
* with provision for handling exceptions thrown by the business logic.
+ * Return an {@link ActionForward} instance describing where and how
+ * control should be forwarded, or <code>null</code> if the response
+ * has already been completed.
*
* @param mapping The ActionMapping used to select this instance
* @param form The optional ActionForm bean for this request (if any)
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>