Removed DOCUMENT ME comments that were generated and applied source code
[utils] / system / general / src / main / java / org / wamblee / system / core / ProvidedInterfaceImplementation.java
index 998e8d6bd3eb9704a7393a4fb4c9ca37d4de807e..73dcc65247484fdddf7e3d0a685421a5008d92d0 100644 (file)
@@ -17,34 +17,30 @@ package org.wamblee.system.core;
 
 /**
  * Represents a provided interface together with its implementation.
- *
+ * 
  * @author Erik Brakkee
  */
 class ProvidedInterfaceImplementation {
-    /**
-     * DOCUMENT ME!
-     */
     private ProvidedInterface _provided;
 
-    /**
-     * DOCUMENT ME!
-     */
     private Object _implementation;
 
-/**
-         * Constructs the object. 
-         * @param aProvided Provided interface. 
-         * @param aImplementation Implementation. 
-         */
+    /**
+     * Constructs the object.
+     * 
+     * @param aProvided
+     *            Provided interface.
+     * @param aImplementation
+     *            Implementation.
+     */
     public ProvidedInterfaceImplementation(ProvidedInterface aProvided,
         Object aImplementation) {
-        _provided           = aProvided;
-        _implementation     = aImplementation;
+        _provided = aProvided;
+        _implementation = aImplementation;
     }
 
     /**
-     * DOCUMENT ME!
-     *
+     * 
      * @return The provided interface.
      */
     public ProvidedInterface getProvided() {
@@ -52,11 +48,12 @@ class ProvidedInterfaceImplementation {
     }
 
     /**
-     * DOCUMENT ME!
-     *
-     * @param <T> Expected type of the implementation.
-     * @param aType Type of the implementation.
-     *
+     * 
+     * @param <T>
+     *            Expected type of the implementation.
+     * @param aType
+     *            Type of the implementation.
+     * 
      * @return Implementation.
      */
     public <T> T getImplementation(Class<T> aType) {