sebb        2005/03/11 16:52:36

  Modified:    src/components/org/apache/jmeter/assertions/gui Tag: rel-2_0
                        XPathPanel.java
               src/core/org/apache/jmeter/util Tag: rel-2_0 XPathUtil.java
               src/components/org/apache/jmeter/assertions Tag: rel-2_0
                        XPathAssertion.java
  Log:
  Fix some Javadoc errors
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.1.2.2   +4 -5      
jakarta-jmeter/src/components/org/apache/jmeter/assertions/gui/Attic/XPathPanel.java
  
  Index: XPathPanel.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/components/org/apache/jmeter/assertions/gui/Attic/XPathPanel.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- XPathPanel.java   6 Mar 2005 12:45:27 -0000       1.1.2.1
  +++ XPathPanel.java   12 Mar 2005 00:52:35 -0000      1.1.2.2
  @@ -96,7 +96,7 @@
        }
        /**
         * Get the XPath String 
  -      * @return
  +      * @return String
         */
        public String getXPath() {
                return this.xpath.getText();
  @@ -110,9 +110,8 @@
        }
        /**
         * Does this negate the xpath results
  -      * @return
  +      * @return boolean
         */
  -
        public boolean isNegated() {
                return this.negated.isSelected();
        }
  @@ -126,7 +125,7 @@
        }
        /**
         * Negated chechbox
  -      * @return
  +      * @return JCheckBox
         */
        public JCheckBox getNegatedCheckBox() {
            if (negated == null ) {
  @@ -137,7 +136,7 @@
        }
        /**
         * Check XPath button
  -      * @return
  +      * @return JButton
         */
        public JButton getCheckXPathButton() {
                if (checkXPath == null) {
  
  
  
  No                   revision
  No                   revision
  1.1.2.2   +2 -2      
jakarta-jmeter/src/core/org/apache/jmeter/util/Attic/XPathUtil.java
  
  Index: XPathUtil.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/core/org/apache/jmeter/util/Attic/XPathUtil.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- XPathUtil.java    6 Mar 2005 12:45:27 -0000       1.1.2.1
  +++ XPathUtil.java    12 Mar 2005 00:52:36 -0000      1.1.2.2
  @@ -71,7 +71,7 @@
          * @param validate
          * @param whitespace
          * @param namespace
  -       * @return
  +       * @return document builder
          * @throws ParserConfigurationException
          * @throws SAXException
          */
  @@ -92,7 +92,7 @@
         * @param whitespace Element Whitespace
         * @param namespace Is Namespace aware.
         * @param tolerant Is tolerant
  -      * @return
  +      * @return document
         * @throws ParserConfigurationException
         * @throws IOException
         * @throws SAXException
  
  
  
  No                   revision
  No                   revision
  1.1.2.3   +4 -4      
jakarta-jmeter/src/components/org/apache/jmeter/assertions/Attic/XPathAssertion.java
  
  Index: XPathAssertion.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/components/org/apache/jmeter/assertions/Attic/XPathAssertion.java,v
  retrieving revision 1.1.2.2
  retrieving revision 1.1.2.3
  diff -u -r1.1.2.2 -r1.1.2.3
  --- XPathAssertion.java       6 Mar 2005 12:45:27 -0000       1.1.2.2
  +++ XPathAssertion.java       12 Mar 2005 00:52:36 -0000      1.1.2.3
  @@ -172,7 +172,7 @@
   
        /**
         * Set the XPath String this will be used as an xpath
  -      * @param String xpath
  +      * @param xpath String
         */
        public void setXPathString(String xpath) {
                setProperty(new StringProperty(XPATH_KEY, xpath));
  @@ -180,7 +180,7 @@
   
        /**
         * Set whether to ignore element whitespace
  -      * @param boolean whitespace
  +      * @param whitespace
         */
        public void setWhitespace(boolean whitespace) {
                setProperty(new BooleanProperty(WHITESPACE_KEY, whitespace));
  @@ -188,7 +188,7 @@
   
        /**
         * Set use validation 
  -      * @param boolean validate
  +      * @param validate
         */
        public void setValidating(boolean validate) {
                setProperty(new BooleanProperty(VALIDATE_KEY, validate));
  @@ -196,7 +196,7 @@
   
        /**
         * Set whether this is namespace aware 
  -      * @param boolean validate
  +      * @param namespace
         */
        public void setNamespace(boolean namespace) {
                setProperty(new BooleanProperty(NAMESPACE_KEY, namespace));
  
  
  

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

Reply via email to