Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / main / java / org / wamblee / general / BeanFactory.java
index 9406b297685efa6f3066396cae786c78e91ea1a6..7655f2cb2ead830163fa931e35c1c4e99db7f44a 100644 (file)
  */
 package org.wamblee.general;
 
-
 /**
  * Bean factory used to obtain objects in a transparent way.
- *
+ * 
  * @author Erik Brakkee
  */
 public interface BeanFactory {
     /**
      * Finds a bean based on id.
-     * @param aId Id of the bean.
-     * @return Object  (always non-null).
-     * @throws BeanFactoryException In case the object could not be found.
+     * 
+     * @param aId
+     *            Id of the bean.
+     * @return Object (always non-null).
+     * @throws BeanFactoryException
+     *             In case the object could not be found.
      */
     Object find(String aId);