You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/06/14 12:00:15 UTC

svn commit: r1135448 - /commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/ClassPathHandler.java

Author: simonetripodi
Date: Tue Jun 14 10:00:14 2011
New Revision: 1135448

URL: http://svn.apache.org/viewvc?rev=1135448&view=rev
Log:
minor javadoc

Modified:
    commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/ClassPathHandler.java

Modified: commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/ClassPathHandler.java
URL: http://svn.apache.org/viewvc/commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/ClassPathHandler.java?rev=1135448&r1=1135447&r2=1135448&view=diff
==============================================================================
--- commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/ClassPathHandler.java (original)
+++ commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/ClassPathHandler.java Tue Jun 14 10:00:14 2011
@@ -22,7 +22,7 @@ package org.apache.commons.meiyo.classpa
 import org.apache.commons.meiyo.classpath.filter.Filter;
 
 /**
- * A classpath handler notifies {@link ClassPathEntry} found to {@link ClassPathEntryHandler} if and only if the
+ * A ClassPath handler notifies {@link ClassPathEntry} found to {@link ClassPathEntryHandler} if and only if the
  * {@link ClassPathEntry} satisfies the {@link Filter} requirements.
  */
 final class ClassPathHandler
@@ -54,8 +54,8 @@ final class ClassPathHandler
     /**
      * Notified the ClassPath entry if the {@link Filter} reference requirements are satisfied.
      * 
-     * @param path
-     * @param classPathEntry
+     * @param path the complete path the entry has been found
+     * @param classPathEntry the Class found during the scan
      */
     public void doHandle( String path, Class<?> classPathEntry )
     {