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 SortedProperties.java

/**
 * @author scotta
 */
public class SortedProperties extends Properties {
    private static final long serialVersionUID = 213081373529965920L;

From source file org.owasp.webgoat.session.WebgoatProperties.java

/**
 * *************************************************************************************************
 *
 *
 * This file is part of WebGoat, an Open Web Application Security Project
 * utility. For details, please see http://www.owasp.org/

From source file Main.java

class SortedProperties extends Properties {
    public Enumeration keys() {
        Enumeration keysEnum = super.keys();
        Vector<String> keyList = new Vector<String>();
        while (keysEnum.hasMoreElements()) {
            keyList.add((String) keysEnum.nextElement());

From source file Main.java

class SortedProperties extends Properties {
    public Enumeration keys() {
        Enumeration keysEnum = super.keys();
        Vector<String> keyList = new Vector<String>();
        while (keysEnum.hasMoreElements()) {
            keyList.add((String) keysEnum.nextElement());

From source file birdnest.client.deamon.Settings.java

/**
 *
 * @author marcelo
 */
public class Settings extends Properties {
    private File currentFile = new File("client.properties");

From source file org.mule.util.OrderedProperties.java

public class OrderedProperties extends Properties {

    private static final long serialVersionUID = -3611415251568805458L;

    private final Vector<Object> keys = new Vector<Object>();

From source file org.carewebframework.ui.command.CommandShortcuts.java

/**
 * Shortcut mappings for commands as loaded from a property resource.
 */
public class CommandShortcuts extends Properties {

    private static final Log log = LogFactory.getLog(CommandShortcuts.class);

From source file ObservableProperties.java

/**
 * An enhanced property class that provides support to monitor changes. This
 * class extends the basic properties class of Java, by providing monitoring
 * support. It also provides more type conversion.
 * 
 * @see PropertyMonitoring

From source file com.healthcit.cacure.utils.ResourceBundleMessageSource.java

public class ResourceBundleMessageSource extends Properties {

    /**
     * This class encapsulates the properties loaded from *.properties files.  Property
     * values can be obtained by calling AppConfig.getXXX(propName) where XXX can be String,
     * Boolean, Int, Long, Double, and Float currently.  We could add Date as well but then we'd

From source file com.clican.pluto.common.resource.MapResource.java

/**
 * ?Spring?Map
 *
 * @author dapeng.zhang
 *
 */