X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=system%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fsystem%2Fcomponents%2FPropertyComponent.java;h=aca7ebb400b7bd028a06096019fa474fd2fc34d6;hb=8de36ff0206c996baf3ee4adc3e2293b12ff5f39;hp=718432fcbb93b98a95d8d98aee763e8a5d68c835;hpb=89c06d4d52b46c154128c97d6e758fa1f4fc7a6e;p=utils diff --git a/system/general/src/main/java/org/wamblee/system/components/PropertyComponent.java b/system/general/src/main/java/org/wamblee/system/components/PropertyComponent.java index 718432fc..aca7ebb4 100644 --- a/system/general/src/main/java/org/wamblee/system/components/PropertyComponent.java +++ b/system/general/src/main/java/org/wamblee/system/components/PropertyComponent.java @@ -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 { - /** - * 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 { /** * 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 { 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 { 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 { return props; } - /** - * DOCUMENT ME! - * - * @param aRuntime DOCUMENT ME! - */ @Override protected void doStop(Properties aRuntime) { - // Empty + // Empty } }