(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / adapters / ObjectConfiguration.java
index e6f647a0457a98d2869ed951a8519a2b180b9fd7..22df04919e7fddb30e3d976f118c2f30342b7fc5 100644 (file)
@@ -36,6 +36,12 @@ public class ObjectConfiguration {
         _setterConfig = new SetterConfiguration(aClass);
     }
     
+    /**
+     * Performs injection into an object of the configured class
+     * using information from the given scope. 
+     * @param aScope Scope. 
+     * @param aObject Object. 
+     */
     public void inject(Scope aScope, Object aObject) { 
         _setterConfig.inject(aScope, aObject);
     }