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 phex.common.collections.SortedProperties.java

public class SortedProperties extends Properties {
    public SortedProperties() {
        super();
    }

    public Enumeration keys() {

From source file org.nuxeo.ecm.platform.test.TranslationProperties.java

/**
 * Properties implementation detecting duplicate keys, that does *not* handle properly removal of items.
 *
 * @since 7.3
 */
public class TranslationProperties extends Properties {

From source file RegexProperties.java

public class RegexProperties extends Properties {
    private static Logger log = Logger.getAnonymousLogger();

    public void load(String inStream) throws IOException, PatternSyntaxException {
        load(new FileInputStream(inStream));
    }

From source file org.eclipse.lyo.client.oslc.samples.automation.WriteThroughProperties.java

/**
 * Subclass of Properties class that writes through to a backing file when a
 * property is set.
 */
public class WriteThroughProperties extends Properties {

From source file PropertiesFile.java

/**
 * A simple Properties extension easing the loading and saving of data
 */
public class PropertiesFile extends Properties {
    private File file;

From source file org.bedework.synch.SynchXPropValue.java

/** We encode a number of values as a single x-property by Base 64 encoding
 * the result of the Properties store method
 *
 *   @author Mike Douglass   douglm@rpi.edu
 */
public class SynchXPropValue extends Properties {

From source file nl.strohalm.cyclos.utils.SortedProperties.java

/**
 * Extended properties used to sort the output of the store method
 * @author luis
 */
public class SortedProperties extends Properties {

From source file org.flowerplatform.core.FlowerProperties.java

/**
 * Central repository for configuration related properties.
 * 
 * <p>
 * For doc, rules and conventions, please see the wiki page   http://csp1/dokuwiki/proiecte/flower/general_instructions/properties_and_configuration
 * 

From source file org.sakaiproject.component.impl.DynamicDefaultSakaiProperties.java

/**
 * Handle any default sakai.properties values that need to be set dynamically.
 */
public class DynamicDefaultSakaiProperties extends Properties {
    private static final long serialVersionUID = 1L;
    private static Log log = LogFactory.getLog(DynamicDefaultSakaiProperties.class);

From source file net.anyflow.lannister.Settings.java

public class Settings extends java.util.Properties {

    private static final long serialVersionUID = -3232325711649130464L;

    protected static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(Settings.class);