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/13 23:06:41 UTC

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

Author: simonetripodi
Date: Mon Jun 13 21:06:41 2011
New Revision: 1135283

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

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

Modified: commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/HandlerConfiguration.java
URL: http://svn.apache.org/viewvc/commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/HandlerConfiguration.java?rev=1135283&r1=1135282&r2=1135283&view=diff
==============================================================================
--- commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/HandlerConfiguration.java (original)
+++ commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/HandlerConfiguration.java Mon Jun 13 21:06:41 2011
@@ -20,11 +20,16 @@ package org.apache.commons.meiyo.classpa
  */
 
 /**
- * FILL ME
+ * A matcher is the ClassPath scanning handlers bindings provider.
  */
 public interface HandlerConfiguration
 {
 
+    /**
+     * Configure the ClassPath scanning handlers via the given matcher.
+     *
+     * @param matcher The matcher instance used to configure ClassPath scanning handlers.
+     */
     void configure( Matcher matcher );
 
 }