X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=test%2Fenterprise%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Ftest%2Finject%2FBinding.java;h=e9b27b98329a0252cecf537ab28701bf1ddbfdd3;hb=83898516d61bfcd1f4e3a3ea79bb56f3877f4900;hp=14e620a32583f6386b3b841584a1153ac5d97a1a;hpb=a1ab1a2e44c95cc10ad4c4d15420b49e3744d93b;p=utils diff --git a/test/enterprise/src/main/java/org/wamblee/test/inject/Binding.java b/test/enterprise/src/main/java/org/wamblee/test/inject/Binding.java index 14e620a3..e9b27b98 100644 --- a/test/enterprise/src/main/java/org/wamblee/test/inject/Binding.java +++ b/test/enterprise/src/main/java/org/wamblee/test/inject/Binding.java @@ -24,12 +24,13 @@ import org.wamblee.reflection.Accessor; import org.wamblee.reflection.AnnotationUtils; /** - * This class represents an injection binding. It provides injection of a defined object (typically mock or stub) - * into other objects. The binding is defined by the required annotation that must be on the field, the field type, - * and the object to be injected. + * This class represents an injection binding. It provides injection of a + * defined object (typically mock or stub) into other objects. The binding is + * defined by the required annotation that must be on the field, the field type, + * and the object to be injected. * * @author Erik Brakkee - * + * * @param */ public class Binding { @@ -39,10 +40,14 @@ public class Binding { private Map> accessorCache; /** - * Constructs the binding. - * @param aClass Required type of the field injected into. - * @param aAnnotation Annotation that must be present on the field. - * @param aValue Value of the annotation. + * Constructs the binding. + * + * @param aClass + * Required type of the field injected into. + * @param aAnnotation + * Annotation that must be present on the field. + * @param aValue + * Value of the annotation. */ public Binding(Class aClass, Class aAnnotation, Object aValue) {