Date: 2004-09-24T11:23:31
   Editor: MichaelMcGrady <[EMAIL PROTECTED]>
   Wiki: Apache Struts Wiki
   Page: StrutsCatalogFiveMultipleButtonSolutions
   URL: http://wiki.apache.org/struts/StrutsCatalogFiveMultipleButtonSolutions

   no comment

Change Log:

------------------------------------------------------------------------------
@@ -112,9 +112,11 @@
 In all the following tag uses, you use the Action class code in execute(...) or 
process(...) as given directly below.
 
 {{{
-  ActionForward = forward = new 
DispatchUtil().dispatch(this,mapping,form,request,response);
+  ActionForward forward = new 
DispatchUtil().dispatch(this,mapping,form,request,response);
 }}}
 
+This means that the above code goes into the execute(...) or process(...) methods, 
whichever of one of those you use in your Action class.  The methods for various 
method names are, of course, separate.
+
 === Multiple Image Tags ===
 
 Multiple image tags are the primary reason for this class.  Integrating this into a 
common solution is the difficulty.
@@ -363,7 +365,7 @@
 public abstract class DispatchAction
     extends Action {
   protected           Class            clazz    = this.getClass();
-  protected static    Log              log      = 
LogFactory.getLog(SimpleDispatchAction.class);
+  protected static    Log              log      = 
LogFactory.getLog(DispatchAction.class);
   protected static    MessageResources messages = 
MessageResources.getMessageResources ("org.apache.struts.actions.LocalStrings");
   protected           HashMap          methods  = new HashMap();
   protected           Class[]          types    = { ActionMapping.class,

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to