You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by ce...@apache.org on 2003/02/27 20:20:36 UTC

cvs commit: jakarta-struts/src/share/org/apache/struts/tiles/actions TilesAction.java

cedric      2003/02/27 11:20:36

  Modified:    src/share/org/apache/struts/tiles/actions TilesAction.java
  Log:
  Documentation corrections and updates.
  No code change.
  Patches from Yann Cebron
  
  Revision  Changes    Path
  1.5       +24 -24    jakarta-struts/src/share/org/apache/struts/tiles/actions/TilesAction.java
  
  Index: TilesAction.java
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/tiles/actions/TilesAction.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- TilesAction.java	4 Feb 2003 02:23:08 -0000	1.4
  +++ TilesAction.java	27 Feb 2003 19:20:36 -0000	1.5
  @@ -76,12 +76,12 @@
   /**
    * Base class for Tiles Actions.
    * This class has the same role as Struts Action. It provides a method execute(...)
  - * called when action is invoked. The difference is that the execute() method takes
  + * called when action is invoked. The difference is, that the execute() method takes
    * an additional parameter : tile context.
    * This class extends Struts Action. Subclasses should override
    * execute(ComponentContext ...) method instead of Struts
    * execute(ActionMapping ...) method.
  - * Backward compatibility is ensure with the perform(ComponentContext ...) method.
  + * Backward compatibility is ensured with the perform(ComponentContext ...) method.
    * @version $Revision$ $Date$
    */
   
  @@ -90,13 +90,13 @@
   
     /**
      * Original Struts Action's method.
  -   * Retrieve current Tile context, and call TilesAction execute method.
  +   * Retrieve current Tile context and call TilesAction execute method.
      * Do not overload this method !
      *
  -   * @param mapping The ActionMapping used to select this instance
  -   * @param form The optional ActionForm bean for this request (if any)
  -   * @param request The HTTP request we are processing
  -   * @param response The HTTP response we are creating
  +   * @param mapping The ActionMapping used to select this instance.
  +   * @param form The optional ActionForm bean for this request (if any).
  +   * @param request The HTTP request we are processing.
  +   * @param response The HTTP response we are creating.
      *
      * @exception Exception if the application business logic throws
      *  an exception
  @@ -119,17 +119,17 @@
     }
   
     /**
  -   * Process the specified HTTP request, and create the corresponding HTTP
  +   * 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.
      * <br>
  -   * Override this method to provide functionality
  +   * Override this method to provide functionality.
      *
  -   * @param context The current Tile context, containing Tile attributes
  -   * @param mapping The ActionMapping used to select this instance
  -   * @param form The optional ActionForm bean for this request (if any)
  -   * @param request The HTTP request we are processing
  -   * @param response The HTTP response we are creating
  +   * @param context The current Tile context, containing Tile attributes.
  +   * @param mapping The ActionMapping used to select this instance.
  +   * @param form The optional ActionForm bean for this request (if any).
  +   * @param request The HTTP request we are processing.
  +   * @param response The HTTP response we are creating.
      *
      * @exception Exception if the application business logic throws
      *  an exception
  @@ -147,17 +147,17 @@
     }
   
       /**
  -     * Process the specified HTTP request, and create the corresponding HTTP
  +     * Process the specified HTTP request and create the corresponding HTTP
        * response (or forward to another web component that will create it).
        * Return an <code>ActionForward</code> instance describing where and how
        * control should be forwarded, or <code>null</code> if the response has
        * already been completed.
        *
  -     * @param context The current Tile context, containing Tile attributes
  -     * @param mapping The ActionMapping used to select this instance
  -     * @param form The optional ActionForm bean for this request (if any)
  -     * @param request The HTTP request we are processing
  -     * @param response The HTTP response we are creating
  +     * @param context The current Tile context, containing Tile attributes.
  +     * @param mapping The ActionMapping used to select this instance.
  +     * @param form The optional ActionForm bean for this request (if any).
  +     * @param request The HTTP request we are processing.
  +     * @param response The HTTP response we are creating.
        *
        * @exception IOException if an input/output error occurs
        * @exception ServletException if a servlet exception occurs
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: struts-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-dev-help@jakarta.apache.org