X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Finject%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Finject%2FInjectable.java;h=7cfdc3d1b56945cbfc54fcfe6044f1b5207dd09c;hb=94ddca39fadbe7931a17c179424afd123bd2863a;hp=a87c236b2cd33c8330bf62893ae42926b4da2004;hpb=5268b970af35b59ca39dc78b8c5aabcd4a296f6e;p=utils diff --git a/support/inject/src/main/java/org/wamblee/inject/Injectable.java b/support/inject/src/main/java/org/wamblee/inject/Injectable.java index a87c236b..7cfdc3d1 100644 --- a/support/inject/src/main/java/org/wamblee/inject/Injectable.java +++ b/support/inject/src/main/java/org/wamblee/inject/Injectable.java @@ -15,22 +15,19 @@ */ package org.wamblee.inject; - - /** * This abstract base class performs injection at construction. Be sure not to * 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 - * a {@link InjectorFactory} to use. + * 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. @@ -39,21 +36,21 @@ public abstract class Injectable { inject(); } - /** - * Inject references. This can be useful when injection is to be done again after construction - * to obtain new references or after zeroing out of the references. + * Inject references. This can be useful when injection is to be done again + * after construction to obtain new references or after zeroing out of the + * references. */ public void inject() { injector.inject(this); - } - - + } + /** * Gets the default injector. - * @return Injector. + * + * @return Injector. */ - public SimpleInjector getInjector() { + public Injector getInjector() { return injector; } }