List of usage examples for java.util Properties subclass-usage
From source file de.unistuttgart.ipvs.pmp.infoapp.webservice.properties.ConnectionProperties.java
/**
* Stores information about the device's short range connection and allows to update or insert a new device information
* set
*
* @author Patrick Strobel
*/
From source file PropertiesHelper.java
public class PropertiesHelper extends Properties { /** * Adds new properties to an existing set of properties while * substituting variables. This function will allow value * substitutions based on other property values. Value substitutions
From source file ImmediateProperties.java
/**
* A subclass of the java.util.Properties class that must be initialized from a
* file on disk, and which always keeps the in-memory property set in sync with
* the contents on disk.
*
* @author Tony Allevato
From source file org.opencastproject.util.XProperties.java
/**
* An extension to the {@code Properties} class which performs the following when you call getProperty:
*
* 1. Checks to see if there are any variables in the property 2. If so it replaces the variable with with the first
* match it finds in the following order - The java properties (java -Dkey=value) - The component context properties
* (set using setBundleContext) - The properties set in the object itself - The container's environment variables This
From source file org.apache.forrest.conf.AntProperties.java
/** * Class for accessing properties in a properties file roughly compatible with * Ant property files, where ${name} is replaced with the value of the property * if declared beforehand. */ public class AntProperties extends Properties {
From source file org.opencastproject.capture.impl.XProperties.java
/**
* An extension to the {@code Properties} class which performs the following when you call getProperty:
*
* 1. Checks to see if there are any variables in the property 2. If so it replaces the variable with with the first
* match it finds in the following order - The java properties (java -Dkey=value) - The component context properties
* (set using setBundleContext) - The properties set in the object itself - The container's environment variables This
From source file org.failearly.dataset.util.ExtendedProperties.java
/** * ExtendedProperties extends properties with the possibility of using references like {@code ${any.var}} or {@code ${user.home}}. */ public class ExtendedProperties extends Properties { /**
From source file de.unistuttgart.ipvs.pmp.infoapp.webservice.properties.ProfileProperties.java
/** * Stores information about the user's profile and allows to update or insert a new profile information set * * @author Patrick Strobel */ public class ProfileProperties extends Properties {
From source file com.hartveld.commons.testing.ejb.OpenEjbContainerProperties.java
/** * Convenience subclass of {@link Properties} that preconfigures itself for use * with OpenEJB. */ @SuppressWarnings("serial") public class OpenEjbContainerProperties extends Properties {
From source file savant.settings.PersistentSettings.java
/** * Class which makes settings persistent. * * @author tarkvara */ public class PersistentSettings extends Properties {