Exemple #1
0
 ImmutableTypedProperties(TypedProperties properties) {
   super();
   if (properties != null && !properties.isEmpty()) {
     for (Map.Entry<Object, Object> e : properties.entrySet())
       super.put(e.getKey(), e.getValue());
   }
 }