use of com.cubrid.cubridmanager.ui.replication.control.ChangeReplTablesWizard in project cubrid-manager by CUBRID.
the class ChangeReplicationSchemaAction method run.
/**
* change replication database.
*/
public void run() {
Object[] obj = this.getSelectedObj();
if (obj == null || obj.length == 0 || !isSupported(obj[0])) {
return;
}
ICubridNode node = (ICubridNode) obj[0];
CMWizardDialog dialog = new CMWizardDialog(getShell(), new ChangeReplTablesWizard(node));
dialog.setPageSize(560, 300);
dialog.open();
}
Aggregations