You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by se...@apache.org on 2003/11/22 04:26:36 UTC

cvs commit: jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/modifier ParamModifier.java UserParameterModifier.java

sebb        2003/11/21 19:26:36

  Modified:    src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog
                        LogFilter.java Filter.java NVPair.java
                        LogParser.java Generator.java TCLogParser.java
               src/protocol/http/org/apache/jmeter/protocol/http/sampler
                        ParseHtmlParser.java HTTPSamplerFull.java
                        SoapSampler.java WebServiceSampler.java
                        AccessLogSampler.java HTTPSampler.java
               src/protocol/http/org/apache/jmeter/protocol/http/util
                        DOMPool.java WSDLException.java
               src/protocol/http/org/apache/jmeter/protocol/http/control/gui
                        WebServiceSamplerGui.java
               src/protocol/http/org/apache/jmeter/protocol/http/modifier
                        ParamModifier.java UserParameterModifier.java
  Log:
  Fixing Javadoc wanings
  
  Revision  Changes    Path
  1.4       +10 -7     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.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- LogFilter.java	20 Oct 2003 23:59:59 -0000	1.3
  +++ LogFilter.java	22 Nov 2003 03:26:35 -0000	1.4
  @@ -188,7 +188,7 @@
   
       /**
        * Give the filter a list of files to include
  -     * @param String[] file names
  +     * @param filenames
        * @see org.apache.jmeter.protocol.http.util.accesslog.Filter#includeFiles(java.lang.String[])
        */
       public void includeFiles(String[] filenames)
  @@ -202,7 +202,7 @@
   
       /**
        * Give the filter a list of files to exclude
  -     * @param String[] file names
  +     * @param filenames
        * @see org.apache.jmeter.protocol.http.util.accesslog.Filter#excludeFiles(java.lang.String[])
        */
       public void excludeFiles(String[] filenames)
  @@ -219,7 +219,7 @@
        * to filter with for inclusion. This method hasn't
        * been fully implemented and test yet. The
        * implementation is not complete.
  -     * @param String[]
  +     * @param regexp
        * @see org.apache.jmeter.protocol.http.util.accesslog.Filter#includePattern(String[])
        */
       public void includePattern(String[] regexp)
  @@ -242,6 +242,8 @@
        * to filter with for exclusion. This method hasn't
        * been fully implemented and test yet. The
        * implementation is not complete.
  +     * @param regexp
  +     * 
        * @see org.apache.jmeter.protocol.http.util.accesslog.Filter#excludePattern(String[])
        */
       public void excludePattern(String[] regexp)
  @@ -273,6 +275,7 @@
        * matches, which means it should be
        * excluded.
        * @see org.apache.jmeter.protocol.http.util.accesslog.Filter#isFiltered(java.lang.String)
  +     * @param path
        * @return boolean 
        */
       public boolean isFiltered(String path)
  @@ -319,7 +322,7 @@
        * method throws an exception and tells the
        * user the same filename is in both the
        * include and exclude array.
  -     * @param String file
  +     * @param file
        * @return boolean
        */
       protected boolean filterFile(String file)
  @@ -343,7 +346,7 @@
        * through the array and uses indexOf. Once
        * it finds a match, it won't bother with
        * the rest of the filenames in the array.
  -     * @param String text
  +     * @param text
        * @return boolean include
        */
       public boolean incFile(String text)
  @@ -370,7 +373,7 @@
        * through the array and uses indexOf. Once it
        * finds a match, it won't bother with the
        * rest of the filenames in the array.
  -     * @param String text
  +     * @param text
        * @return boolean exclude
        */
       public boolean excFile(String text)
  @@ -524,7 +527,7 @@
       /**
        * create a new pattern object from
        * the string.
  -     * @param String pattern
  +     * @param  pattern
        * @return Pattern
        */
       public Pattern createPattern(String pattern)
  
  
  
  1.3       +5 -5      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog/Filter.java
  
  Index: Filter.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog/Filter.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Filter.java	17 Oct 2003 15:08:31 -0000	1.2
  +++ Filter.java	22 Nov 2003 03:26:35 -0000	1.3
  @@ -89,20 +89,20 @@
   public interface Filter {
   
   	/**
  -	 * @param String old extension
  -	 * @param String new extension
  +	 * @param oldextension
  +	 * @param newextension
   	 */
   	public void setReplaceExtension(String oldextension, String newextension);
   	
   	/**
   	 * Include all files in the array.
  -	 * @param String filenames
  +	 * @param filenames
   	 */
   	public void includeFiles(String[] filenames);
   	
   	/**
   	 * Exclude all files in the array
  -	 * @param String filenames
  +	 * @param filenames
   	 */
   	public void excludeFiles(String[] filenames);
   	
  @@ -110,7 +110,7 @@
   	 * Include any log entry that contains
   	 * the following regular expression
   	 * pattern.
  -	 * @param String regexp
  +	 * @param regexp
   	 */
   	public void includePattern(String[] regexp);
   	
  
  
  
  1.3       +6 -6      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog/NVPair.java
  
  Index: NVPair.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog/NVPair.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- NVPair.java	17 Oct 2003 15:08:31 -0000	1.2
  +++ NVPair.java	22 Nov 2003 03:26:35 -0000	1.3
  @@ -27,8 +27,8 @@
   	/**
   	 * The constructor takes a name and value
   	 * which represent HTTP request parameters.
  -	 * @param String name
  -	 * @param String value
  +	 * @param name
  +	 * @param value
   	 */
   	public NVPair(String name, String value) {
   		this.NAME = name;
  @@ -37,7 +37,7 @@
   
   	/**
   	 * Set the name
  -	 * @param String name
  +	 * @param name
   	 */	
   	public void setName(String name) {
   		this.NAME = name;
  @@ -45,7 +45,7 @@
   
   	/**
   	 * Set the value
  -	 * @param String value
  +	 * @param value
   	 */	
   	public void setValue(String value) {
   		this.VALUE = value;
  @@ -53,7 +53,7 @@
   
   	/**
   	 * Return the name
  -	 * @return String name
  +	 * @return name
   	 */	
   	public String getName() {
   		return this.NAME;
  @@ -61,7 +61,7 @@
   
   	/**
   	 * Return the value
  -	 * @return String value
  +	 * @return value
   	 */	
   	public String getValue() {
   		return this.VALUE;
  
  
  
  1.3       +1 -1      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog/LogParser.java
  
  Index: LogParser.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog/LogParser.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- LogParser.java	17 Oct 2003 15:08:31 -0000	1.2
  +++ LogParser.java	22 Nov 2003 03:26:35 -0000	1.3
  @@ -99,7 +99,7 @@
   	/**
   	 * the method will parse the given number of
   	 * lines. Pass "-1" to parse the entire file.
  -	 * @param int count
  +	 * @param count
   	 * @return int
   	 */
   	public int parse(int count);
  
  
  
  1.3       +7 -7      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog/Generator.java
  
  Index: Generator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog/Generator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Generator.java	17 Oct 2003 15:08:31 -0000	1.2
  +++ Generator.java	22 Nov 2003 03:26:35 -0000	1.3
  @@ -105,7 +105,7 @@
   
   	/**
   	 * The host is the name of the server.
  -	 * @param String host
  +	 * @param host
   	 */	
   	public void setHost(String host);
   
  @@ -113,20 +113,20 @@
   	 * This is the label for the request,
   	 * which is used in the logs and
   	 * results.
  -	 * @param String label
  +	 * @param label
   	 */
   	public void setLabel(String label);
   
   	/**
   	 * The method is the HTTP request
   	 * method. It's normally POST or GET.
  -	 * @param String post_get
  +	 * @param post_get
   	 */	
   	public void setMethod(String post_get);
   
   	/**
   	 * Set the request parameters
  -	 * @param NVPairs params
  +	 * @param params
   	 */	
   	public void setParams(NVPair[] params);
   
  @@ -141,7 +141,7 @@
   	 * The default port for HTTP is 80,
   	 * but not all servers run on that
   	 * port.
  -	 * @param port
  +	 * @param port - port number
   	 */	
   	public void setPort(int port);
   
  @@ -155,7 +155,7 @@
   	/**
   	 * The source logs is the location
   	 * where the access log resides.
  -	 * @param String sourcefile
  +	 * @param sourcefile
   	 */
   	public void setSourceLogs(String sourcefile);
   
  @@ -164,7 +164,7 @@
   	 * or a Sampler. We make it generic, so
   	 * that later on we can use these classes
   	 * directly from a HTTPSampler.
  -	 * @param Object target
  +	 * @param target
   	 */	
   	public void setTarget(Object target);
   
  
  
  
  1.5       +20 -16    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.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- TCLogParser.java	20 Oct 2003 23:59:59 -0000	1.4
  +++ TCLogParser.java	22 Nov 2003 03:26:35 -0000	1.5
  @@ -157,7 +157,7 @@
       }
   
       /**
  -     * @param String sourcefile
  +     * @param source
        */
       public TCLogParser(String source)
       {
  @@ -166,7 +166,7 @@
   
       /**
        * Set the Generator
  -     * @param Generator 
  +     * @param generator 
        */
       public void setGenerator(Generator generator)
       {
  @@ -179,7 +179,7 @@
        * to provide the ability to filter the
        * log file later on. By default, the parser
        * uses the file in the log.
  -     * @param boolean
  +     * @param file
        */
       public void setUseParsedFile(boolean file)
       {
  @@ -191,7 +191,7 @@
        * in the access logs. This is provided as
        * a convienance and reduce the need to
        * spend hours cleaning up log files.
  -     * @param Filter filter
  +     * @param filter
        */
       public void setFilter(Filter filter)
       {
  @@ -200,7 +200,7 @@
   
       /**
        * Sets the source file.
  -     * @param String source
  +     * @param source
        */
       public void setSourceFile(String source)
       {
  @@ -209,6 +209,7 @@
   
       /**
        * Creates a new File object.
  +     * @param filename
        */
       public File openFile(String filename)
       {
  @@ -247,8 +248,8 @@
        * the filter and number of lines in
        * the log. The method returns the
        * actual lines parsed.
  -     * @param int count
  -     * @return int lines parsed
  +     * @param count
  +     * @return lines parsed
        */
       public int parse(int count)
       {
  @@ -264,7 +265,7 @@
        * The method is responsible for reading each
        * line, and breaking out of the while loop
        * if a set number of lines is given.
  -     * @param BufferedReader breader
  +     * @param breader
        */
       protected void parse(BufferedReader breader)
       {
  @@ -367,8 +368,8 @@
        * 127.0.0.1 - - [08/Jan/2003:07:03:54 -0500]
        * 	"GET /addrbook/ HTTP/1.1" 200 1981
        * <p>
  -     * @param String entry
  -     * @return String url
  +     * @param entry
  +     * @return cleaned url
        */
       public String cleanURL(String entry)
       {
  @@ -445,6 +446,7 @@
        * Tokenize the URL into two tokens. If the URL has more than one "?", the
        * parse may fail. Only the first two tokens are used. The first token is
        * automatically parsed and set at URL_PATH.
  +     * @param url
        * @return String parameters
        */
       public String stripFile(String url)
  @@ -466,7 +468,7 @@
       /**
        * Checks the string to make sure it has /path/file?name=value format. If
        * the string doesn't have "?", it will return false.
  -     * @param String url
  +     * @param url
        * @return boolean
        */
       public boolean checkURL(String url)
  @@ -484,7 +486,7 @@
       /**
        * Checks the string to see if it contains "&" and "=". If it does, return
        * true, so that it can be parsed.
  -     * @param String text
  +     * @param  text
        * @return boolean
        */
       public boolean checkParamFormat(String text)
  @@ -501,7 +503,7 @@
   
       /**
        * Convert a single line into XML
  -     * @param String text
  +     * @param text
        */
       public void convertStringToJMRequest(String text)
       {
  @@ -513,7 +515,7 @@
        * array. Once they are parsed, it is returned.
        * The method uses parseOneParameter(string)
        * to convert each pair.
  -     * @param String stringparams
  +     * @param stringparams
        */
       public NVPair[] convertStringtoNVPair(String stringparams)
       {
  @@ -536,7 +538,7 @@
        * and would not conform to HTTP spec. I should double
        * check the protocol spec to make sure this is
        * accurate.
  -     * @param String text
  +     * @param  parameter to be parsed
        * @return NVPair
        */
       protected NVPair parseOneParameter(String parameter)
  @@ -570,7 +572,7 @@
        * Some one could write the querystrings by hand,
        * but that would be round about and go against the
        * purpose of this utility.
  -     * @param String parameters
  +     * @param  parameters
        * @return Vector
        */
       protected Vector parseParameters(String parameters)
  @@ -586,6 +588,8 @@
   
       /**
        * Parses the line using java.util.StringTokenizer.
  +     * @param line line to be parsed
  +     * @param delim delimiter
        * @return StringTokenizer
        */
       public StringTokenizer tokenize(String line, String delim)
  
  
  
  1.2       +4 -3      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/ParseHtmlParser.java
  
  Index: ParseHtmlParser.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/ParseHtmlParser.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ParseHtmlParser.java	20 Nov 2003 02:34:29 -0000	1.1
  +++ ParseHtmlParser.java	22 Nov 2003 03:26:36 -0000	1.2
  @@ -92,9 +92,10 @@
   	 * This method is called by HTTPSampler to get the images
   	 * from the HTML and retrieve it from the server. It is
   	 * the entry point for parsing the HTML.
  -	 * @param res
  -	 * @param sampler
  -	 * @return
  +	 * 
  +     * @param res - the current sample result
  +     * @param sampler - the HTTP sampler
  +     * @return the sample result, with possible additional sub results
   	 */
   	protected static SampleResult parseForImages(SampleResult res,HTTPSampler sampler)
   	{
  
  
  
  1.17      +7 -6      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerFull.java
  
  Index: HTTPSamplerFull.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerFull.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- HTTPSamplerFull.java	20 Nov 2003 02:36:54 -0000	1.16
  +++ HTTPSamplerFull.java	22 Nov 2003 03:26:36 -0000	1.17
  @@ -134,7 +134,7 @@
       }
   
       /**
  -     * Samples the <code>Entry</code> passed in and stores the result in
  +     * Samples the <code>HTTPSampler</code> passed in and stores the result in
        * <code>SampleResult</code>. The original file (which is assumed to be
        * an HTML file) is parsed into a DOM tree and examined for embedded binary
        * files.
  @@ -142,7 +142,8 @@
        * Note that files that are duplicated within the enclosing document will
        * only be downloaded once.
        *
  -     * @param entry an entry to be sampled
  +     * @param sampler an HTTPSampler to be sampled
  +     * 
        * @return      results of the sampling
        */
       public SampleResult sample(HTTPSampler sampler)
  @@ -160,9 +161,9 @@
       }
   
       /**
  -     * @param res
  -     * @param sampler
  -     * @return
  +     * @param res - the current sample result
  +     * @param sampler - the HTTP sampler
  +     * @return the sample result, with possible additional sub results
        */
       protected SampleResult parseForImages(SampleResult res, HTTPSampler sampler)
       {
  
  
  
  1.7       +1 -2      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/SoapSampler.java
  
  Index: SoapSampler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/SoapSampler.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- SoapSampler.java	16 Aug 2003 17:22:52 -0000	1.6
  +++ SoapSampler.java	22 Nov 2003 03:26:36 -0000	1.7
  @@ -66,7 +66,6 @@
        *
        * @param connection      <code>URLConnection</code> of where POST data
        *                        should be sent
  -     * @param url             contains the query string for POST
        * @exception IOException if an I/O exception occurs
        */
       public void sendPostData(URLConnection connection) throws IOException
  
  
  
  1.4       +9 -7      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/WebServiceSampler.java
  
  Index: WebServiceSampler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/WebServiceSampler.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- WebServiceSampler.java	16 Aug 2003 17:22:52 -0000	1.3
  +++ WebServiceSampler.java	22 Nov 2003 03:26:36 -0000	1.4
  @@ -161,7 +161,7 @@
       /**
        * it's kinda obvious, but we state it anyways.  Set the xml file with a
        * string path.
  -     * @param String filename
  +     * @param filename
        */
       public void setXmlFile(String filename)
       {
  @@ -237,7 +237,7 @@
   
       /**
        * Set the XML data.
  -     * @param String data
  +     * @param data
        */
       public void setXmlData(String data)
       {
  @@ -255,7 +255,7 @@
   
       /**
        * Set the soap action which should be in the form of an URN.
  -     * @param String data
  +     * @param data
        */
       public void setSoapAction(String data)
       {
  @@ -273,7 +273,7 @@
   
       /**
        * Set the memory cache.
  -     * @param boolean cache
  +     * @param cache
        */
       public void setMemoryCache(boolean cache)
       {
  @@ -291,7 +291,7 @@
   
       /**
        * Set whether the sampler should read the response or not.
  -     * @param boolean read
  +     * @param read
        */
       public void setReadResponse(boolean read)
       {
  @@ -334,6 +334,7 @@
   
       /**
        * Open the file and create a Document.
  +     * @param key
        * @return Document
        */
       protected Document openDocument(String key)
  @@ -369,7 +370,8 @@
   
       /**
        * sample(Entry e) simply calls sample().
  -     * @param Entry e
  +     * @param e - ignored
  +     * @return the sample Result
        */
       public SampleResult sample(Entry e)
       {
  
  
  
  1.5       +4 -3      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.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AccessLogSampler.java	21 Oct 2003 00:00:00 -0000	1.4
  +++ AccessLogSampler.java	22 Nov 2003 03:26:36 -0000	1.5
  @@ -145,7 +145,7 @@
       /**
        * it's kinda obvious, but we state it anyways.  Set the xml file with a
        * string path.
  -     * @param String filename
  +     * @param classname - parser class name
        */
       public void setParserClassName(String classname)
       {
  @@ -256,7 +256,8 @@
   
   	/**
   	 * sample(Entry e) simply calls sample().
  -	 * @param Entry e
  +	 * @param e - ignored
  +	 * @return the new sample
   	 */
   	public SampleResult sample(Entry e)
   	{
  
  
  
  1.60      +4 -3      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSampler.java
  
  Index: HTTPSampler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSampler.java,v
  retrieving revision 1.59
  retrieving revision 1.60
  diff -u -r1.59 -r1.60
  --- HTTPSampler.java	20 Nov 2003 17:37:44 -0000	1.59
  +++ HTTPSampler.java	22 Nov 2003 03:26:36 -0000	1.60
  @@ -592,7 +592,7 @@
       /**
        * Set request headers in preparation to opening a connection.
        *
  -     * @param connection       <code>URLConnection</code> to set headers on
  +     * @param conn       <code>URLConnection</code> to set headers on
        * @exception IOException  if an I/O exception occurs
        */
       public void setPostHeaders(URLConnection conn) throws IOException
  @@ -617,7 +617,8 @@
        * POST), headers, cookies, authorization properly set for the URL request.
        *
        * @param u                <code>URL</code> of the URL request
  -     * @param url              <code>UrlConfig</code> of the URL request
  +     * @param method            http/https
  +     * @param res               the sample result
        * @return                 <code>HttpURLConnection</code> of the URL request
        * @exception IOException  if an I/O Exception occurs
        */
  
  
  
  1.4       +4 -4      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/DOMPool.java
  
  Index: DOMPool.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/DOMPool.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DOMPool.java	18 Aug 2003 19:43:15 -0000	1.3
  +++ DOMPool.java	22 Nov 2003 03:26:36 -0000	1.4
  @@ -86,7 +86,7 @@
   
       /**
        * Return a document.
  -     * @param Object key
  +     * @param key
        * @return Document
        */
       public static Document getDocument(Object key)
  @@ -96,8 +96,8 @@
   
       /**
        * Add an object to the cache.
  -     * @param Object key
  -     * @param Object data
  +     * @param key
  +     * @param data
        */
       public static void putDocument(Object key, Object data)
       {
  
  
  
  1.3       +2 -2      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/WSDLException.java
  
  Index: WSDLException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/util/WSDLException.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- WSDLException.java	16 Aug 2003 17:22:51 -0000	1.2
  +++ WSDLException.java	22 Nov 2003 03:26:36 -0000	1.3
  @@ -76,7 +76,7 @@
       }
   
       /**
  -     * @param message
  +     * @param exception
        */
       public WSDLException(Exception exception)
       {
  
  
  
  1.6       +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.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- WebServiceSamplerGui.java	21 Oct 2003 00:00:00 -0000	1.5
  +++ WebServiceSamplerGui.java	22 Nov 2003 03:26:36 -0000	1.6
  @@ -389,8 +389,8 @@
        * description is isolated to this method, we can
        * easily replace it with a different WSDL driver
        * later on.
  -     * @param String url
  -     * @return String[] 
  +     * @param url
  +     * @return array of web methods 
        */
       public String[] browseWSDL(String url)
       {
  @@ -414,7 +414,7 @@
   
       /**
        * method from ActionListener
  -     * @param ActionEvent event
  +     * @param event that occurred
        */
       public void actionPerformed(ActionEvent event)
       {
  
  
  
  1.9       +1 -3      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/modifier/ParamModifier.java
  
  Index: ParamModifier.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/modifier/ParamModifier.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ParamModifier.java	19 Oct 2003 22:43:50 -0000	1.8
  +++ ParamModifier.java	22 Nov 2003 03:26:36 -0000	1.9
  @@ -97,8 +97,6 @@
        * Modifies an entry object to replace the value of any url parameter that
        * matches a defined mask.
        *
  -     * @param  entry  entry object containing information about the current test
  -     * @return        <code>True</code> if modified, else <code>false</code>
        */
       public void process()
       {
  
  
  
  1.11      +1 -3      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/modifier/UserParameterModifier.java
  
  Index: UserParameterModifier.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/modifier/UserParameterModifier.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- UserParameterModifier.java	7 Sep 2003 18:58:16 -0000	1.10
  +++ UserParameterModifier.java	22 Nov 2003 03:26:36 -0000	1.11
  @@ -142,8 +142,6 @@
        * Modifies an entry object to replace the value of any url parameter that
        * matches a parameter name in the XML file.
        *
  -     * @param entry Entry object containing information about the current test
  -     * @return <code>True</code> if modified, else <code>false</code>
        */
       public void process()
       {
  
  
  

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