Set<URL> done = new HashSet<URL>();
initialise(gloze);
// gather global schema components
this.schemaMap = schemaMap;
for (URL url: schemaMap.keySet()) {
schema xs = schemaMap.get(url);
if (!done.contains(xs.get_url())) xs.gatherGlobals(model,this,done);
}
}