Example #1
0
 /**
  * Constructs a SchemaSystem object using previously saved data.
  *
  * @param xml The XmlObject to which data has previously been saved.
  */
 public SchemaSystem(SchemaSetConfig xml) {
   schemas = new LinkedHashMap<String, Schema>();
   for (SchemaConfig item : xml.getSchemaList())
     schemas.put(item.getNamespace(), new Schema(item, this));
 }