You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ba...@apache.org on 2008/12/16 00:27:30 UTC

svn commit: r726873 - /maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/AbstractEclipsePluginIT.java

Author: baerrach
Date: Mon Dec 15 15:27:20 2008
New Revision: 726873

URL: http://svn.apache.org/viewvc?rev=726873&view=rev
Log:
Added javadoc to methods

Modified:
    maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/AbstractEclipsePluginIT.java

Modified: maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/AbstractEclipsePluginIT.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/AbstractEclipsePluginIT.java?rev=726873&r1=726872&r2=726873&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/AbstractEclipsePluginIT.java (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/AbstractEclipsePluginIT.java Mon Dec 15 15:27:20 2008
@@ -889,6 +889,18 @@
         }
     }
     
+    /**
+     * Return the not available marker file for the specified artifact details.
+     * 
+     * @param groupId group id of artifact
+     * @param artifactId artifact id of artifact
+     * @param version version of artifact
+     * @param classifier the classifier of the artifact
+     * @param inClassifier the sources/javadocs to be attached
+     * @return the not available marker file
+     * @throws Exception failures.
+     * @see IdeUtils#createArtifactWithClassifier(String, String, String, String, String, ArtifactFactory)
+     */
     protected File getNotAvailableMarkerFile( String groupId, String artifactId, String version,
                                                      String classifier, String inClassifier )
         throws Exception
@@ -922,6 +934,16 @@
         return IdeUtils.getNotAvailableMarkerFile( localRepository, artifact );
     }
     
+    /**
+     * Assert that the not available marker file exists for the specified artifact details.
+     * 
+     * @param groupId group id of artifact
+     * @param artifactId artifact id of artifact
+     * @param version version of artifact
+     * @param classifier the classifier of the artifact
+     * @param inClassifier the sources/javadocs to be attached
+     * @throws Exception failures
+     */
     protected void assertNotAvailableMarkerFileExists( String groupId, String artifactId, String version,
                                                        String classifier, String inClassifier ) throws Exception
     {
@@ -929,6 +951,16 @@
         assertTrue( "The \"Not Available\" marker file does not exist: " + markerFile, markerFile.exists() );
     }
     
+    /**
+     * Assert that the not available marker file does not exist for the specified artifact details.
+     * 
+     * @param groupId group id of artifact
+     * @param artifactId artifact id of artifact
+     * @param version version of artifact
+     * @param classifier the classifier of the artifact
+     * @param inClassifier the sources/javadocs to be attached
+     * @throws Exception failures
+     */
     protected void assertNotAvailableMarkerFileDoesNotExist( String groupId, String artifactId, String version,
                                                        String classifier, String inClassifier ) throws Exception
     {