sebb        2003/10/20 17:00:00

  Modified:    src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog
                        LogFilter.java TCLogParser.java
               src/protocol/http/org/apache/jmeter/protocol/http/gui
                        AuthPanel.java CookiePanel.java HeaderPanel.java
               src/protocol/http/org/apache/jmeter/protocol/http/control/gui
                        SoapSamplerGui.java AccessLogSamplerGui.java
                        HttpTestSampleGui.java WebServiceSamplerGui.java
               src/protocol/http/org/apache/jmeter/protocol/http/util
                        WSDLHelper.java
               src/protocol/http/org/apache/jmeter/protocol/http/config/gui
                        HttpDefaultsGui.java
               src/protocol/http/org/apache/jmeter/protocol/http/sampler
                        AccessLogSampler.java
               src/protocol/http/org/apache/jmeter/protocol/http/proxy
                        Daemon.java
  Log:
  Fixing Javadoc warnings; some unused fields commented
  
  Revision  Changes    Path
  1.3       +9 -9      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog/LogFilter.java
  
  Index: LogFilter.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog/LogFilter.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- LogFilter.java    17 Oct 2003 15:08:31 -0000      1.2
  +++ LogFilter.java    20 Oct 2003 23:59:59 -0000      1.3
  @@ -220,7 +220,7 @@
        * been fully implemented and test yet. The
        * implementation is not complete.
        * @param String[]
  -     * @see 
org.apache.jmeter.protocol.http.util.accesslog.Filter#includePattern(java.lang.String)
  +     * @see 
org.apache.jmeter.protocol.http.util.accesslog.Filter#includePattern(String[])
        */
       public void includePattern(String[] regexp)
       {
  @@ -242,7 +242,7 @@
        * to filter with for exclusion. This method hasn't
        * been fully implemented and test yet. The
        * implementation is not complete.
  -     * @see 
org.apache.jmeter.protocol.http.util.accesslog.Filter#excludePattern(java.lang.String)
  +     * @see 
org.apache.jmeter.protocol.http.util.accesslog.Filter#excludePattern(String[])
        */
       public void excludePattern(String[] regexp)
       {
  @@ -407,7 +407,7 @@
        */
       protected boolean filterPattern(String text)
       {
  -        boolean match = false;
  +        boolean match = false;//TODO not used
           if (MATCHER == null)
           {
               MATCHER = new Perl5Matcher();
  @@ -428,7 +428,7 @@
        * not included, unless it matches. In that case,
        * it will return true.
        * @param text
  -     * @return
  +     * @return true if text is included
        */
       protected boolean incPattern(String text)
       {
  @@ -449,7 +449,7 @@
        * not excluded. If the text matches the
        * pattern, it will then return true.
        * @param text
  -     * @return
  +     * @return true if text is excluded
        */
       protected boolean excPattern(String text)
       {
  @@ -588,7 +588,7 @@
           System.out.println(" ------------ exclude test -------------");
           for (int idx = 0; idx < thefiles.length; idx++)
           {
  -            boolean fl = testf.isFiltered(thefiles[idx]);
  +            boolean fl = testf.isFiltered(thefiles[idx]);//TODO not used
               String line = testf.filter(thefiles[idx]);
               if (line != null)
               {
  @@ -600,7 +600,7 @@
           System.out.println(" ------------ include test -------------");
           for (int idx = 0; idx < thefiles.length; idx++)
           {
  -            boolean fl = testf.isFiltered(thefiles[idx]);
  +            boolean fl = testf.isFiltered(thefiles[idx]);//TODO not used
               String line = testf.filter(thefiles[idx]);
               if (line != null)
               {
  @@ -616,7 +616,7 @@
           System.out.println(" ------------ exclude Pattern test -------------");
           for (int idx = 0; idx < thefiles.length; idx++)
           {
  -            boolean fl = testf.isFiltered(thefiles[idx]);
  +            boolean fl = testf.isFiltered(thefiles[idx]);//TODO not used
               String line = testf.filter(thefiles[idx]);
               if (line != null)
               {
  @@ -630,7 +630,7 @@
           System.out.println(" ------------ include Pattern test -------------");
           for (int idx = 0; idx < thefiles.length; idx++)
           {
  -            boolean fl = testf.isFiltered(thefiles[idx]);
  +            boolean fl = testf.isFiltered(thefiles[idx]);//TODO not used
               String line = testf.filter(thefiles[idx]);
               if (line != null)
               {
  
  
  
  1.4       +2 -2      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog/TCLogParser.java
  
  Index: TCLogParser.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog/TCLogParser.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TCLogParser.java  17 Oct 2003 15:14:44 -0000      1.3
  +++ TCLogParser.java  20 Oct 2003 23:59:59 -0000      1.4
  @@ -421,7 +421,7 @@
        * methods currently. The other methods
        * aren't supported yet.
        * @param text
  -     * @return
  +     * @return if method is supported
        */
       public boolean checkMethod(String text)
       {
  @@ -613,7 +613,7 @@
        */
       public static void main(String[] args)
       {
  -        int count = -1;
  +        int count = -1;//TODO not used
           if (args != null && args[0] != null && args[0].length() > 0)
           {
               try
  
  
  
  1.13      +5 -5      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/gui/AuthPanel.java
  
  Index: AuthPanel.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/gui/AuthPanel.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- AuthPanel.java    19 Oct 2003 22:43:51 -0000      1.12
  +++ AuthPanel.java    20 Oct 2003 23:59:59 -0000      1.13
  @@ -91,7 +91,7 @@
    * Sampler. It also understands how to get AuthManagers for the files that the
    * user selects.
    *
  - * @author    
  + * @author    unattributed
    * @version   $Revision$  Last updated: $Date$
    */
   public class AuthPanel extends AbstractConfigGui implements ActionListener
  @@ -133,7 +133,7 @@
   
       /**
        * Modifies a given TestElement to mirror the data in the gui components.
  -     * @see JMeterGUIComponent#modifyTestElement(TestElement)
  +     * @see org.apache.jmeter.gui.JMeterGUIComponent#modifyTestElement(TestElement)
        */
       public void modifyTestElement(TestElement el)
       {
  
  
  
  1.15      +2 -2      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/gui/CookiePanel.java
  
  Index: CookiePanel.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/gui/CookiePanel.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- CookiePanel.java  19 Oct 2003 22:43:51 -0000      1.14
  +++ CookiePanel.java  20 Oct 2003 23:59:59 -0000      1.15
  @@ -293,7 +293,7 @@
   
       /**
        * Modifies a given TestElement to mirror the data in the gui components.
  -     * @see JMeterGUIComponent#modifyTestElement(TestElement)
  +     * @see org.apache.jmeter.gui.JMeterGUIComponent#modifyTestElement(TestElement)
        */
       public void modifyTestElement(TestElement cm)
       {
  
  
  
  1.13      +4 -4      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/gui/HeaderPanel.java
  
  Index: HeaderPanel.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/gui/HeaderPanel.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- HeaderPanel.java  7 Sep 2003 18:58:17 -0000       1.12
  +++ HeaderPanel.java  20 Oct 2003 23:59:59 -0000      1.13
  @@ -133,7 +133,7 @@
   
       /**
        * Modifies a given TestElement to mirror the data in the gui components.
  -     * @see JMeterGUIComponent#modifyTestElement(TestElement)
  +     * @see org.apache.jmeter.gui.JMeterGUIComponent#modifyTestElement(TestElement)
        */
       public void modifyTestElement(TestElement el)
       {
  
  
  
  1.10      +2 -2      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/SoapSamplerGui.java
  
  Index: SoapSamplerGui.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/SoapSamplerGui.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- SoapSamplerGui.java       16 Aug 2003 17:22:51 -0000      1.9
  +++ SoapSamplerGui.java       20 Oct 2003 23:59:59 -0000      1.10
  @@ -48,7 +48,7 @@
   
       /**
        * Modifies a given TestElement to mirror the data in the gui components.
  -     * @see JMeterGUIComponent#modifyTestElement(TestElement)
  +     * @see org.apache.jmeter.gui.JMeterGUIComponent#modifyTestElement(TestElement)
        */
       public void modifyTestElement(TestElement s)
       {
  
  
  
  1.7       +5 -5      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/AccessLogSamplerGui.java
  
  Index: AccessLogSamplerGui.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/AccessLogSamplerGui.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- AccessLogSamplerGui.java  18 Oct 2003 20:36:21 -0000      1.6
  +++ AccessLogSamplerGui.java  21 Oct 2003 00:00:00 -0000      1.7
  @@ -150,7 +150,7 @@
       }
   
       /**
  -     * @see JMeterGUIComponent#getStaticLabel()
  +     * @see org.apache.jmeter.gui.JMeterGUIComponent#getStaticLabel()
        */
       public String getStaticLabel()
       {
  @@ -158,7 +158,7 @@
       }
   
       /**
  -     * @see JMeterGUIComponent#createTestElement()
  +     * @see org.apache.jmeter.gui.JMeterGUIComponent#createTestElement()
        */
       public TestElement createTestElement()
       {
  @@ -179,7 +179,7 @@
         * Utility method to parse the string and get a int port
         * number. If it couldn't parse the string to an integer,
         * it will return the default port 80.
  -      * @return
  +      * @return port number
         */
        public int getPortNumber(){
                try {
  @@ -195,7 +195,7 @@
   
       /**
        * Modifies a given TestElement to mirror the data in the gui components.
  -     * @see JMeterGUIComponent#modifyTestElement(TestElement)
  +     * @see org.apache.jmeter.gui.JMeterGUIComponent#modifyTestElement(TestElement)
        */
       public void modifyTestElement(TestElement s)
       {
  
  
  
  1.15      +2 -2      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/HttpTestSampleGui.java
  
  Index: HttpTestSampleGui.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/HttpTestSampleGui.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- HttpTestSampleGui.java    5 Oct 2003 00:44:02 -0000       1.14
  +++ HttpTestSampleGui.java    21 Oct 2003 00:00:00 -0000      1.15
  @@ -102,7 +102,7 @@
   
       /**
        * Modifies a given TestElement to mirror the data in the gui components.
  -     * @see JMeterGUIComponent#modifyTestElement(TestElement)
  +     * @see org.apache.jmeter.gui.JMeterGUIComponent#modifyTestElement(TestElement)
        */
       public void modifyTestElement(TestElement sampler)
       {
  
  
  
  1.5       +4 -4      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/WebServiceSamplerGui.java
  
  Index: WebServiceSamplerGui.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/WebServiceSamplerGui.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- WebServiceSamplerGui.java 16 Aug 2003 17:22:51 -0000      1.4
  +++ WebServiceSamplerGui.java 21 Oct 2003 00:00:00 -0000      1.5
  @@ -166,7 +166,7 @@
       }
   
       /**
  -     * @see JMeterGUIComponent#getStaticLabel()
  +     * @see org.apache.jmeter.gui.JMeterGUIComponent#getStaticLabel()
        */
       public String getStaticLabel()
       {
  @@ -174,7 +174,7 @@
       }
   
       /**
  -     * @see JMeterGUIComponent#createTestElement()
  +     * @see org.apache.jmeter.gui.JMeterGUIComponent#createTestElement()
        */
       public TestElement createTestElement()
       {
  @@ -210,7 +210,7 @@
   
       /**
        * Modifies a given TestElement to mirror the data in the gui components.
  -     * @see JMeterGUIComponent#modifyTestElement(TestElement)
  +     * @see org.apache.jmeter.gui.JMeterGUIComponent#modifyTestElement(TestElement)
        */
       public void modifyTestElement(TestElement s)
       {
  
  
  
  1.4       +2 -2      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/WSDLHelper.java
  
  Index: WSDLHelper.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/WSDLHelper.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- WSDLHelper.java   5 Oct 2003 00:44:02 -0000       1.3
  +++ WSDLHelper.java   21 Oct 2003 00:00:00 -0000      1.4
  @@ -117,7 +117,7 @@
   
       /**
        * Returns the URL
  -     * @return
  +     * @return the URL
        */
       public URL getURL()
       {
  
  
  
  1.11      +2 -2      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/HttpDefaultsGui.java
  
  Index: HttpDefaultsGui.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/HttpDefaultsGui.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- HttpDefaultsGui.java      16 Aug 2003 17:22:51 -0000      1.10
  +++ HttpDefaultsGui.java      21 Oct 2003 00:00:00 -0000      1.11
  @@ -104,7 +104,7 @@
   
       /**
        * Modifies a given TestElement to mirror the data in the gui components.
  -     * @see JMeterGUIComponent#modifyTestElement(TestElement)
  +     * @see org.apache.jmeter.gui.JMeterGUIComponent#modifyTestElement(TestElement)
        */
       public void modifyTestElement(TestElement config)
       {
  
  
  
  1.4       +6 -7      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/AccessLogSampler.java
  
  Index: AccessLogSampler.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/AccessLogSampler.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- AccessLogSampler.java     18 Oct 2003 20:33:56 -0000      1.3
  +++ AccessLogSampler.java     21 Oct 2003 00:00:00 -0000      1.4
  @@ -121,7 +121,7 @@
        /** private members used by class **/
        private Generator GENERATOR = null;
        private LogParser PARSER = null;
  -     private LogFilter FILTER = null;
  +     private LogFilter FILTER = null; //TODO not used
        private Class GENERATORCLASS = null;
        private Class PARSERCLASS = null;
   
  @@ -177,7 +177,7 @@
   
        /**
         * Return the name of the generator class to use.
  -      * @return
  +      * @return generator class name
         */     
        public String getGeneratorClassName(){
                return getPropertyAsString(GENERATOR_CLASS_NAME);
  @@ -196,7 +196,7 @@
   
        /**
         * Return the generator
  -      * @return
  +      * @return generator
         */
        public Generator getGenerator(){
                return GENERATOR;
  @@ -212,7 +212,7 @@
   
        /**
         * Return the parser
  -      * @return
  +      * @return parser
         */
        public LogParser getParser(){
                return PARSER;  
  @@ -336,7 +336,6 @@
         * the class in the text field. This was done to
         * make it easier for people to plugin their own log parser
         * and use different log parser.
  -      * @return
         */
        public void instantiateParser()
        {
  @@ -374,7 +373,7 @@
         * the class in the text field. This was done to
         * make it easier for people to plugin their own log parser
         * and use different log parser.
  -      * @return
  +      * @return true if parser exists or was created
         */
        public boolean checkParser()
        {
  
  
  
  1.9       +2 -2      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Daemon.java
  
  Index: Daemon.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Daemon.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Daemon.java       19 Oct 2003 22:43:51 -0000      1.8
  +++ Daemon.java       21 Oct 2003 00:00:00 -0000      1.9
  @@ -212,7 +212,7 @@
       /**
        * Stop the proxy daemon.  The daemon may not stop immediately.
        *
  -     * @see #ACCEPT_TIMEOUT
  +     * see #ACCEPT_TIMEOUT
        */
       public void stopServer()
       {
  
  
  

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

Reply via email to