X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=system%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fsystem%2Fcomponents%2FPropertyComponent.java;h=d5fbb43a3b25dbb7e61d99d48a9d111096f90ea6;hb=49ce7cb8387601982d5e6ef186ce206d38f6e3d7;hp=718432fcbb93b98a95d8d98aee763e8a5d68c835;hpb=ddd261f331280640c5b53c7128230b629ebcd268;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..d5fbb43a 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 @@ -1,12 +1,12 @@ /* - * Copyright 2008 the original author or authors. - * + * Copyright 2005-2010 the original author or authors. + * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -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 } }