Removed DOCUMENT ME comments that were generated and applied source code
[utils] / system / general / src / main / java / org / wamblee / system / components / PropertyComponent.java
index 718432fcbb93b98a95d8d98aee763e8a5d68c835..aca7ebb400b7bd028a06096019fa474fd2fc34d6 100644 (file)
@@ -26,34 +26,24 @@ import java.io.IOException;
 
 import java.util.Properties;
 
-
 /**
  * Property component that reads a property file and provides it to other
- * components through a provided interface.  NOTE: when multiple property
+ * components through a provided interface. NOTE: when multiple property
  * components are used, disambiguation of provided and required interfaces is
  * needed.
- *
+ * 
  * @author Erik Brakkee
  */
 public class PropertyComponent extends AbstractComponent<Properties> {
-    /**
-     * DOCUMENT ME!
-     */
-    private static ProvidedInterface PROPS = new DefaultProvidedInterface("props",
-            Properties.class);
+    private static ProvidedInterface PROPS = new DefaultProvidedInterface(
+        "props", Properties.class);
 
-    /**
-     * DOCUMENT ME!
-     */
     private Properties props;
 
     /**
      * Creates a new PropertyComponent object.
-     *
-     * @param aName DOCUMENT ME!
-     * @param aResource DOCUMENT ME!
-     *
-     * @throws IOException DOCUMENT ME!
+     * 
+     * 
      */
     public PropertyComponent(String aName, InputResource aResource)
         throws IOException {
@@ -62,9 +52,7 @@ public class PropertyComponent extends AbstractComponent<Properties> {
 
     /**
      * Creates a new PropertyComponent object.
-     *
-     * @param aName DOCUMENT ME!
-     * @param aProps DOCUMENT ME!
+     * 
      */
     public PropertyComponent(String aName, Properties aProps) {
         super(aName);
@@ -73,15 +61,6 @@ public class PropertyComponent extends AbstractComponent<Properties> {
         addProvidedInterface(PROPS);
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aResource DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     *
-     * @throws IOException DOCUMENT ME!
-     */
     private static Properties readProps(InputResource aResource)
         throws IOException {
         Properties props = new Properties();
@@ -90,13 +69,6 @@ public class PropertyComponent extends AbstractComponent<Properties> {
         return props;
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aScope DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     @Override
     protected Properties doStart(Scope aScope) {
         addInterface(PROPS, props, aScope);
@@ -104,13 +76,8 @@ public class PropertyComponent extends AbstractComponent<Properties> {
         return props;
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aRuntime DOCUMENT ME!
-     */
     @Override
     protected void doStop(Properties aRuntime) {
-        // Empty 
+        // Empty
     }
 }