jvanzyl     2002/11/24 12:55:14

  Modified:    src/java/org/apache/maven/app Maven.java
  Log:
  o javadoc corrections.
  
  Revision  Changes    Path
  1.141     +10 -3     jakarta-turbine-maven/src/java/org/apache/maven/app/Maven.java
  
  Index: Maven.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/app/Maven.java,v
  retrieving revision 1.140
  retrieving revision 1.141
  diff -u -r1.140 -r1.141
  --- Maven.java        24 Nov 2002 20:47:53 -0000      1.140
  +++ Maven.java        24 Nov 2002 20:55:14 -0000      1.141
  @@ -613,6 +613,7 @@
        *  specifically to find resources stored in the maven.jar
        *
        * @param name Name of the resource to find.
  +     * @return InputStream Found the found resource.
        * @throws Exception If an error occurs while trying to retreive the
        * named resource.
        */
  @@ -657,7 +658,10 @@
       }
   
       /**
  -     * Create project verifier
  +     * Create project verifier.
  +     *
  +     * @return ProjectVerifier An initialized project verifier.
  +     * @throws Exception If an error occurs while creating the project verifier.
        */
       private ProjectVerifier createProjectVerifier()
           throws Exception
  @@ -677,8 +681,11 @@
       /**
        * Verify a project. Basically make sure the dependencies are
        * present and do a basic sanity check.
  +     *
  +     * @throws Exception If an error occurs while verifying the project.
        */
  -    public void verifyProject() throws Exception
  +    public void verifyProject()
  +        throws Exception
       {
           projectVerifier.setMavenProject( getProject() );
           getProjectVerifier().doExecute();
  
  
  

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

Reply via email to