(no commit message)
[utils] / support / inject / src / main / java / org / wamblee / inject / package-info.java
index c07c8ab89a81d11168956f4f36b7c956eeddf534..2d07bb1f46c9304c662226f743e793e852c6740f 100644 (file)
  * 
  * <p>Users of this package will typically use: </p>
  * <ul>
- *   <li> <code>SimpleInjector</code>: This is the class used to perform injection of dependencies into 
+ *   <li> <code>Injector</code>: This is the interface used to perform injection of dependencies into 
  *        a given object. </li>
  *   <li> <code>Injectable</code>: By subclassing this class, the classes automatically get their 
  *        dependencies injected at construction. </li>
- *   <li> <code>InjectorFactoryBuilder</code>: To get an injector factory reference for use in the 
- *       <code>SimpleInjector</code>
+ *   <li> <code>InjectorBuilder</code>: To get an instance of the  <code>Injector</code>.
+ *   </li>
  * </ul>
  * 
  * <h2>Implementors of the package</h2>
@@ -38,7 +38,7 @@
  *   <li> <code>Injector</code>: The main interface to be implemented is the {@link Injector}, by which injection is done.</li>
  *   <li> <code>InjectorFactory</code>: Injectors are created by an implementation of the {@link InjectorFactory} which 
  * creates injectors based on the class.</li>
- *   <li> <code>InjectorFactoryBuilder</code>: Implementations must make their <code>InjectorFactory</code>
+ *   <li> <code>InjectorBuilder</code>: Implementations must make their <code>InjectorFactory</code>
  *       available through the <code>ServiceLoader</code> mechanism. 
  *   </li>
  * </ul>
@@ -49,4 +49,3 @@
  */
 package org.wamblee.inject;
 
-