X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=system%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fsystem%2Fadapters%2FConstructorConfiguration.java;h=7a5c259d621c13cf9f6932d1939ea9e443b5d668;hb=dd469a1a73acbfa4dc5377d67cecf7bdd4e9e1b4;hp=2725d0338fcae9026cf8f02754da8c2e5453f6f8;hpb=9cd3686a90a0a75ef52ec190bcd445bc3a777e7e;p=utils diff --git a/system/general/src/main/java/org/wamblee/system/adapters/ConstructorConfiguration.java b/system/general/src/main/java/org/wamblee/system/adapters/ConstructorConfiguration.java index 2725d033..7a5c259d 100644 --- a/system/general/src/main/java/org/wamblee/system/adapters/ConstructorConfiguration.java +++ b/system/general/src/main/java/org/wamblee/system/adapters/ConstructorConfiguration.java @@ -16,7 +16,6 @@ package org.wamblee.system.adapters; import java.lang.reflect.Constructor; -import java.lang.reflect.Member; import java.lang.reflect.Modifier; import java.util.ArrayList; import java.util.Arrays; @@ -28,6 +27,22 @@ import org.wamblee.system.core.RequiredInterface; import org.wamblee.system.core.Scope; import org.wamblee.system.core.SystemAssemblyException; +/** + * Class that allows configuration of the constructor to use. + * + * In particular, it provides: + * + */ public class ConstructorConfiguration { private Class _class; private Constructor _constructor; @@ -35,9 +50,8 @@ public class ConstructorConfiguration { private boolean _publicOnly; /** - * Constructs the configuration. By default no constructor is selected and - * one of {@link #select(Class...)} or - * {@link #greedy()} must be called. + * Constructs the configuration. By default the public constructor with the + * most arguments will be used. * @param aClass Class to construct. */ public ConstructorConfiguration(Class aClass) { @@ -48,7 +62,7 @@ public class ConstructorConfiguration { /** * Sets whether or no non public constructors are also considered. - * Reset the choice of a constructor. + * Reset the choice of a constructor to its default. * @param aNonPublic * @return */