(no commit message)
[utils] / support / inject / src / main / java / org / wamblee / inject / Injectable.java
index a87c236b2cd33c8330bf62893ae42926b4da2004..ccc408f7a0eca2e5a914ce3d7d80f205b4e7986e 100644 (file)
@@ -22,15 +22,15 @@ package org.wamblee.inject;
  * initialize fields of derived classes to null as these will override the
  * initializations of this base class.
  * 
- * This class uses {@link InjectorFactoryBuilder} to obtain an implementation of 
+ * This class uses {@link InjectorBuilder} to obtain an implementation of 
  * a {@link InjectorFactory} to use. 
  * 
  * @author Erik Brakkee
  */
 public abstract class Injectable {
 
-    private final SimpleInjector injector = 
-        InjectorFactoryBuilder.getInjector();
+    private final Injector injector = 
+        InjectorBuilder.getInjector();
 
     /**
      * Inheritance style constructor.
@@ -53,7 +53,7 @@ public abstract class Injectable {
      * Gets the default injector.
      * @return Injector. 
      */
-    public SimpleInjector getInjector() {
+    public Injector getInjector() {
         return injector;
     }
 }