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/04/05 22:21:48 UTC

svn commit: r1089203 - /commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/resource/names/NameDiscoverers.java

Author: simonetripodi
Date: Tue Apr  5 20:21:48 2011
New Revision: 1089203

URL: http://svn.apache.org/viewvc?rev=1089203&view=rev
Log:
added missing javadoc comments

Modified:
    commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/resource/names/NameDiscoverers.java

Modified: commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/resource/names/NameDiscoverers.java
URL: http://svn.apache.org/viewvc/commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/resource/names/NameDiscoverers.java?rev=1089203&r1=1089202&r2=1089203&view=diff
==============================================================================
--- commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/resource/names/NameDiscoverers.java (original)
+++ commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/resource/names/NameDiscoverers.java Tue Apr  5 20:21:48 2011
@@ -35,6 +35,12 @@ public class NameDiscoverers
     implements ResourceNameDiscover
 {
     private static Log log = LogFactory.getLog(NameDiscoverers.class);
+
+    /**
+     * Sets the {@code Log} for this class.
+     *
+     * @param _log This class {@code Log}
+     */
     public static void setLog(Log _log) {
         log = _log;
     }
@@ -48,9 +54,11 @@ public class NameDiscoverers
     }
 
     /**
-     * Specify an additional class loader to be used in searching.
-     * The order of loaders determines the order of the result.
-     * It is recommended to add the most specific loaders first.
+     * Specify an discover to be used in searching.
+     * The order of discover determines the order of the result.
+     * It is recommended to add the most specific discover first.
+     *
+     * @param The discover to be added
      */
     public void addResourceNameDiscover(ResourceNameDiscover discover) {
         if (discover != null) {
@@ -58,18 +66,27 @@ public class NameDiscoverers
         }
     }
 
+    /**
+     * Retrieve the discover positioned at the given index.
+     *
+     * @param idx The discover index position client is requiring
+     * @return The discover positioned at the input index
+     */
     protected ResourceNameDiscover getResourceNameDiscover(int idx) {
         return discoverers.get(idx);
     }
 
+    /**
+     * Returns the current size of set discovers.
+     *
+     * @return The current size of set discovers
+     */
     protected int size() {
         return discoverers.size();
     }
 
     /**
-     * Set of results of all discoverers.
-     *
-     * @return ResourceIterator
+     * {@inheritDoc}
      */
     @Override
     public ResourceNameIterator findResourceNames(final String resourceName) {