use of com.cubrid.common.ui.er.loader.ERSchemaTableNodesLoader in project cubrid-manager by CUBRID.
the class ERSchemaEditor method setInput.
protected void setInput(IEditorInput input) {
super.setInput(input);
if (input instanceof SchemaEditorInput) {
database = ((SchemaEditorInput) input).getDatabase();
}
tableNodesLoader = new ERSchemaTableNodesLoader(database);
erSchema = new ERSchema(database.getName(), (SchemaEditorInput) input);
erSchema.setLayoutManualDesiredAndFire(true);
initCollections(database.getDatabaseInfo());
}
Aggregations