示例#1
0
 // Creates an empty property list with the specified defaults.
 public Properties(Properties defaults)
 {
     this.defaults = defaults;
 }
示例#2
0
 public PropertyResourceReader(Properties properties)
 {
     m_Properties = properties;
 }
示例#3
0
 // Creates an empty property list with no default values.
 public Properties()
 {
     defaults = null;
 }