All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jpattern.ioc.property.PropertyReader Maven / Gradle / Ivy

There is a newer version: 2.7.1
Show newest version
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