(no commit message)
[utils] / support / inject / src / main / java / org / wamblee / inject / InjectorFactory.java
index d36720de8eca93ebc6853f5e861502be5677ea98..104c4e272ac8bdc7fc25a0e4de702d3a96e11911 100644 (file)
  */
 package org.wamblee.inject;
 
-
 /**
- * The injector factory is responsible for creating injectors for a given class. 
- * This must be implemneted to interface to specific dependency injection frameworks or for
- * testing. 
+ * The injector factory is responsible for creating injectors for a given class.
+ * This must be implemneted to interface to specific dependency injection
+ * frameworks or for testing.
  * 
- * Implementations of this class must have a default no-arg constructor to be usable by 
- * {@link InjectorBuilder}.
+ * Implementations of this class must have a default no-arg constructor to be
+ * usable by {@link InjectorBuilder}.
  * 
  * @author Erik Brakkee
  */
@@ -30,8 +29,10 @@ public interface InjectorFactory {
 
     /**
      * Creates an injector.
+     * 
      * @return Injector fot he given class.
-     * @throws IllegalArgumentException In case the given class cannot be used. 
+     * @throws IllegalArgumentException
+     *             In case the given class cannot be used.
      */
     Injector create(Class aClass);