// Creates an empty property list with the specified defaults. public Properties(Properties defaults) { this.defaults = defaults; }
public PropertyResourceReader(Properties properties) { m_Properties = properties; }
// Creates an empty property list with no default values. public Properties() { defaults = null; }