husted 2002/06/24 09:56:31 Modified: src/share/org/apache/struts/action Action.java Log: Add @since Struts 1.1 JavaDocs. Revision Changes Path 1.39 +13 -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.38 retrieving revision 1.39 diff -u -r1.38 -r1.39 --- Action.java 23 Mar 2002 01:14:04 -0000 1.38 +++ Action.java 24 Jun 2002 16:56:31 -0000 1.39 @@ -121,6 +121,8 @@ /** * The context attributes key under which our <code>ActionServlet</code> * instance will be stored. + * + * @since Struts 1.1 */ public static final String ACTION_SERVLET_KEY = "org.apache.struts.action.ACTION_SERVLET"; @@ -136,6 +138,8 @@ * <code>ApplicationConfig</code> object for the application selected by * the request URI currently being processed will also be exposed under * this key as a request attribute.</p> + * + * @since Struts 1.1 */ public static final String APPLICATION_KEY = "org.apache.struts.action.APPLICATION"; @@ -230,6 +234,8 @@ * The request attributes key under which your action should store an * <code>org.apache.struts.action.ActionMessages</code> object, if you * are using the corresponding custom tag library elements. + * + * @since Struts 1.1 */ public static final String MESSAGE_KEY = "org.apache.struts.action.ACTION_MESSAGE"; @@ -353,6 +359,7 @@ * * @exception Exception if the application business logic throws * an exception + * @since Struts 1.1 */ public ActionForward execute(ActionMapping mapping, ActionForm form, @@ -378,6 +385,7 @@ * * @exception Exception if the application business logic throws * an exception + * @since Struts 1.1 */ public ActionForward execute(ActionMapping mapping, ActionForm form, @@ -664,6 +672,7 @@ * * @param request The servlet request we are processing * @param messages Messages object + * @since Struts 1.1 */ protected void saveMessages(HttpServletRequest request, ActionMessages messages) {
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>