Example usage for java.util Properties subclass-usage

List of usage examples for java.util Properties subclass-usage

Introduction

In this page you can find the example usage for java.util Properties subclass-usage.

Usage

From source file com.comcast.cats.PropertyUtil.java

/**
 * This class will read the test configuration from
 * src/test/resources/test.properties
 * 
 * @author subinsugunan
 * 

From source file com.xpn.xwiki.XWikiConfig.java

public class XWikiConfig extends Properties {
    public XWikiConfig() {
        // Default constructor so that properties can be added after constructing the instance
        // by using XWikiConfig.put().
    }

From source file com.longio.spring.EnvProperties.java

/**
 * @author zhu jinxian
 * @date  20151217
 * 
 */
public class EnvProperties extends Properties {

From source file pt.webdetails.cpf.AbstractCpfProperties.java

public abstract class AbstractCpfProperties extends Properties {

    protected static final long serialVersionUID = 1L;
    protected static final Log logger = LogFactory.getLog(CpfProperties.class);
    protected static String PROPERTIES_FILE = "config.properties";

From source file io.coala.config.CoalaPropertyMap.java

/**
 * {@link CoalaPropertyMap} extends {@link Properties} with some utility methods
 * 
 * FIXME should extend {@link Configuration} instead ?
 * 
 * @date $Date: 2014-06-13 14:10:35 +0200 (Fri, 13 Jun 2014) $

From source file net.douglasthrift.bigscreenbot.Settings.java

public class Settings extends Properties {
    private static final String SETTINGS = "bigscreenbot.properties";

    public boolean getBooleanProperty(String key, boolean defaultValue) {
        String value = getProperty(key);

From source file net.thirdy.blackmarket.util.BlackmarketProperties.java

/**
 *
 * @author thirdy
 *
 */
public class BlackmarketProperties extends Properties {

From source file XMLProperties.java

/**
 * The <code>Properties</code> class represents a persistent set of
 * properties. The <code>Properties</code> can be saved to a stream or loaded
 * from a stream. Each key and its corresponding value in the property list is a
 * string.
 * <p>

From source file us.paulevans.basicxslt.UserPreferences.java

/**
 * Mechanism to store and retreive the user preferences for the tool
 * @author pevans
 *
 */
public class UserPreferences extends Properties {

From source file de.unistuttgart.ipvs.pmp.infoapp.webservice.properties.BatteryProperties.java

/**
 * Stores information about the device's battery and allows to update or insert a new device information set
 * 
 * @author Patrick Strobel
 */
public class BatteryProperties extends Properties {