(no commit message)
[utils] / wicket / joe / src / main / java / org / wamblee / wicket / inject / ComponentInstantiationInjector.java
index a4a0dcf96b4bbbac73a01581ffe8192bf78e3e08..cdda947daf8d3b4e8ab348e6a325605f499360d7 100644 (file)
@@ -23,39 +23,40 @@ import org.wamblee.inject.SimpleInjector;
 
 /**
  * <p>
- * Component instantiation listener that injects references into a component 
- * using the injector mini-framework. Together with an implementation of the 
+ * Component instantiation listener that injects references into a component
+ * using the injector mini-framework. Together with an implementation of the
  * mini-framework, Contexts and Dependency Injection support can be provided or
- * for standard Java EE injection into components. Or, other injection 
+ * for standard Java EE injection into components. Or, other injection
  * frameworks can be used.
  * </p>
  * 
  * <p>
- * To use this injector override {@link WebApplication#init()} and add the 
- * listener: 
+ * To use this injector override {@link WebApplication#init()} and add the
+ * listener:
  * </p>
+ * 
  * <pre>
- *    &#064;Override
- *    protected void init() {
- *       super.init();
- *       addComponentInstantiationListener(new ComponentInstantiationInjector());
- *    }
+ * &#064;Override
+ * protected void init() {
+ *     super.init();
+ *     addComponentInstantiationListener(new ComponentInstantiationInjector());
+ * }
  * </pre>
  * 
  * @author Erik Brakkee
  */
 public class ComponentInstantiationInjector implements
-        IComponentInstantiationListener {
-    
-    private SimpleInjector injector; 
-    
+    IComponentInstantiationListener {
+
+    private SimpleInjector injector;
+
     /**
-     * Constructs the component instantiation listener. 
+     * Constructs the component instantiation listener.
      */
-    public ComponentInstantiationInjector() { 
+    public ComponentInstantiationInjector() {
         injector = new SimpleInjector(InjectorBuilder.getInjectorFactory());
     }
-    
+
     @Override
     public void onInstantiation(Component aComponent) {
         injector.inject(aComponent);