[utilities COMMIT] /java-support/trunk/src/test/java/net/shibboleth/utilities/java/support/xml/XMLAssertTestNG.java

noreply at shibboleth.net noreply at shibboleth.net
Thu Aug 8 15:37:31 EDT 2013


Author: scantor
Date: Thu Aug  8 15:37:31 2013
New Revision: 422

URL: http://svn.shibboleth.net/view/utilities?rev=422&view=rev
Log:
Fix javadoc warnings in maven build

Modified:
    java-support/trunk/src/test/java/net/shibboleth/utilities/java/support/xml/XMLAssertTestNG.java

Modified: java-support/trunk/src/test/java/net/shibboleth/utilities/java/support/xml/XMLAssertTestNG.java
URL: http://svn.shibboleth.net/view/utilities/java-support/trunk/src/test/java/net/shibboleth/utilities/java/support/xml/XMLAssertTestNG.java?rev=422&r1=421&r2=422&view=diff
==============================================================================
--- java-support/trunk/src/test/java/net/shibboleth/utilities/java/support/xml/XMLAssertTestNG.java (original)
+++ java-support/trunk/src/test/java/net/shibboleth/utilities/java/support/xml/XMLAssertTestNG.java Thu Aug  8 15:37:31 2013
@@ -369,9 +369,10 @@
     /**
      * Assert that the node lists of two Xpaths in the same document are equal
      * 
-     * @param xpathOne
-     * @param xpathTwo
+     * @param controlXpath
+     * @param testXpath
      * @param document
+     * @throws XpathException
      * @see XpathEngine
      */
     public static void assertXpathsEqual(String controlXpath, String testXpath, Document document)
@@ -382,9 +383,12 @@
     /**
      * Assert that the node lists of two Xpaths in the same document are equal
      * 
-     * @param xpathOne
-     * @param xpathTwo
+     * @param controlXpath
+     * @param testXpath
      * @param document
+     * @throws SAXException
+     * @throws IOException
+     * @throws XpathException
      * @see XpathEngine
      */
     public static void assertXpathsEqual(String controlXpath, String testXpath, InputSource document)
@@ -395,11 +399,12 @@
     /**
      * Assert that the node lists of two Xpaths in the same XML string are equal
      * 
-     * @param xpathOne
-     * @param xpathTwo
+     * @param controlXpath
+     * @param testXpath
      * @param inXMLString
      * @throws SAXException
      * @throws IOException
+     * @throws XpathException
      */
     public static void assertXpathsEqual(String controlXpath, String testXpath, String inXMLString)
             throws SAXException, IOException, XpathException {
@@ -409,10 +414,13 @@
     /**
      * Assert that the node lists of two Xpaths in two documents are equal
      * 
-     * @param xpathOne
-     * @param xpathTwo
+     * @param controlXpath
      * @param controlDocument
+     * @param testXpath
      * @param testDocument
+     * @throws SAXException
+     * @throws IOException
+     * @throws XpathException
      * @see XpathEngine
      */
     public static void assertXpathsEqual(String controlXpath, InputSource controlDocument, String testXpath,
@@ -424,12 +432,13 @@
     /**
      * Assert that the node lists of two Xpaths in two XML strings are equal
      * 
-     * @param xpathOne
+     * @param controlXpath
      * @param inControlXMLString
-     * @param xpathTwo
+     * @param testXpath
      * @param inTestXMLString
      * @throws SAXException
      * @throws IOException
+     * @throws XpathException
      */
     public static void assertXpathsEqual(String controlXpath, String inControlXMLString, String testXpath,
             String inTestXMLString) throws SAXException, IOException, XpathException {
@@ -440,10 +449,10 @@
     /**
      * Assert that the node lists of two Xpaths in two documents are equal
      * 
-     * @param xpathOne
-     * @param xpathTwo
+     * @param controlXpath
      * @param controlDocument
-     * @param testDocument
+     * @param testXpath
+     * @throws XpathException
      * @see XpathEngine
      */
     public static void assertXpathsEqual(String controlXpath, Document controlDocument, String testXpath,
@@ -454,9 +463,10 @@
     /**
      * Assert that the node lists of two Xpaths in the same document are NOT equal
      * 
-     * @param xpathOne
-     * @param xpathTwo
+     * @param controlXpath
+     * @param testXpath
      * @param document
+     * @throws XpathException
      * @see XpathEngine
      */
     public static void assertXpathsNotEqual(String controlXpath, String testXpath, Document document)
@@ -467,9 +477,12 @@
     /**
      * Assert that the node lists of two Xpaths in the same document are NOT equal
      * 
-     * @param xpathOne
-     * @param xpathTwo
+     * @param controlXpath
+     * @param testXpath
      * @param document
+     * @throws SAXException
+     * @throws IOException
+     * @throws XpathException
      * @see XpathEngine
      */
     public static void assertXpathsNotEqual(String controlXpath, String testXpath, InputSource document)
@@ -480,11 +493,12 @@
     /**
      * Assert that the node lists of two Xpaths in the same XML string are NOT equal
      * 
-     * @param xpathOne
-     * @param xpathTwo
+     * @param controlXpath
+     * @param testXpath
      * @param inXMLString
      * @throws SAXException
      * @throws IOException
+     * @throws XpathException
      */

[... 395 lines stripped ...]


More information about the commits mailing list