com.jpattern.ioc.property.PropertyReader Maven / Gradle / Ivy
package com.jpattern.ioc.property;
/**
*
* @author Claudio Quaresima - [email protected] - 26/ott/08 11:58:44
* @version $Id: $
*/
public class PropertyReader extends AbstractPropertyReader {
public String property(String aProperty) {
String returned =_properties.getProperty(aProperty);
if (returned==null)
returned = aProperty;
return returned;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy