sebb        2003/10/19 15:15:38

  Modified:    src/components/org/apache/jmeter/control
                        OnceOnlyController.java InterleaveControl.java
               src/components/org/apache/jmeter/control/gui
                        ModuleControllerGui.java
  Log:
  @created is not valid javadoc; make final Strings static
  
  Revision  Changes    Path
  1.9       +2 -2      
jakarta-jmeter/src/components/org/apache/jmeter/control/OnceOnlyController.java
  
  Index: OnceOnlyController.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/components/org/apache/jmeter/control/OnceOnlyController.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- OnceOnlyController.java   11 Aug 2003 21:30:33 -0000      1.8
  +++ OnceOnlyController.java   19 Oct 2003 22:15:38 -0000      1.9
  @@ -66,8 +66,8 @@
   
   /**
    * @author     Michael Stover
  - * @created    March 13, 2001
  - * @version    $Revision$
  + * Created      March 13, 2001
  + * @version    $Revision$ Last updated: $Date$
    */
   public class OnceOnlyController
       extends GenericController
  
  
  
  1.21      +2 -2      
jakarta-jmeter/src/components/org/apache/jmeter/control/InterleaveControl.java
  
  Index: InterleaveControl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/components/org/apache/jmeter/control/InterleaveControl.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- InterleaveControl.java    5 Oct 2003 01:08:40 -0000       1.20
  +++ InterleaveControl.java    19 Oct 2003 22:15:38 -0000      1.21
  @@ -67,8 +67,8 @@
   
   /**
    * @author    Michael Stover
  - * @created   March 13, 2001
  - * @version   $Revision$
  + * Created     March 13, 2001
  + * @version   $Revision$ Last updated: $Date$
    */
   public class InterleaveControl extends GenericController implements Serializable
   {
  
  
  
  1.10      +4 -5      
jakarta-jmeter/src/components/org/apache/jmeter/control/gui/ModuleControllerGui.java
  
  Index: ModuleControllerGui.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/components/org/apache/jmeter/control/gui/ModuleControllerGui.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- ModuleControllerGui.java  11 Aug 2003 21:30:33 -0000      1.9
  +++ ModuleControllerGui.java  19 Oct 2003 22:15:38 -0000      1.10
  @@ -94,9 +94,8 @@
       private JComboBox nodes;
       private DefaultComboBoxModel nodesModel;
   
  -    public static String STATIC_LABEL =
  -        JMeterUtils.getResString("module_controller_title");
  -    public static String CONTROLLER = "Module To Run";
  +    public static final String CONTROLLER = "Module To Run";
  +    //TODO should be a resource, and probably ought to be resolved at run-time (to 
allow language change)
   
       /**
        * Initializes the gui panel for the ModuleController instance.
  @@ -111,7 +110,7 @@
        */
       public String getStaticLabel()
       {
  -        return STATIC_LABEL;
  +        return JMeterUtils.getResString("module_controller_title");
       }
   
       /* (non-Javadoc)
  
  
  

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

Reply via email to