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 15:11:27 UTC

svn commit: r1135552 - /commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classvisitor/AnnotationHandlerBinder.java

Author: simonetripodi
Date: Tue Jun 14 13:11:26 2011
New Revision: 1135552

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

Modified:
    commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classvisitor/AnnotationHandlerBinder.java

Modified: commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classvisitor/AnnotationHandlerBinder.java
URL: http://svn.apache.org/viewvc/commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classvisitor/AnnotationHandlerBinder.java?rev=1135552&r1=1135551&r2=1135552&view=diff
==============================================================================
--- commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classvisitor/AnnotationHandlerBinder.java (original)
+++ commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classvisitor/AnnotationHandlerBinder.java Tue Jun 14 13:11:26 2011
@@ -24,17 +24,37 @@ import java.lang.reflect.Field;
 import java.lang.reflect.Method;
 
 /**
- * FILL ME.
+ * The Class/Annotation scanning EDSL.
  */
 public interface AnnotationHandlerBinder
 {
 
+    /**
+     * Configure a new scanning rule for {@code Class}.
+     *
+     * @return a new builder to associate an annotation handler to the given annotated element.
+     */
     AnnotatedHandlerBuilder<Class> handleType();
 
+    /**
+     * Configure a new scanning rule for {@code Constructor}.
+     *
+     * @return a new builder to associate an annotation handler to the given annotated element.
+     */
     AnnotatedHandlerBuilder<Constructor> handleConstructor();
 
+    /**
+     * Configure a new scanning rule for {@code Field}.
+     *
+     * @return a new builder to associate an annotation handler to the given annotated element.
+     */
     AnnotatedHandlerBuilder<Field> handleField();
 
+    /**
+     * Configure a new scanning rule for {@code Method}.
+     *
+     * @return a new builder to associate an annotation handler to the given annotated element.
+     */
     AnnotatedHandlerBuilder<Method> handleMethod();
 
 }