KeyGeneratorDef definition = (KeyGeneratorDef) ekg.nextElement();
_keyGenRegistry.createKeyGenerator(definition);
}
// Create tables.
Enumeration ec = root.enumerateClassMapping();
while (ec.hasMoreElements()) {
ClassMapping cm = (ClassMapping) ec.nextElement();
Table table = createTable(cm);
if (table != null) { _schema.addTable(table); }
}