use of com.cubrid.common.ui.cubrid.view.editor.ViewDashboardInput in project cubrid-manager by CUBRID.
the class OpenTargetAction method openViewsDetailInfoEditor.
/**
* open view detail info part
* @param database
*/
public void openViewsDetailInfoEditor(CubridDatabase database) {
IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
if (null == window) {
return;
}
if (database == null) {
return;
}
/*Check it open same editor*/
IEditorPart editorPart = getOpenedEditorPart(database, ViewDashboardEditorPart.ID);
if (editorPart == null) {
OpenViewsDetailInfoPartProgress progress = new OpenViewsDetailInfoPartProgress(database);
progress.loadViewsInfo();
if (progress.isSuccess()) {
ViewDashboardInput input = new ViewDashboardInput(database, progress.getViewList());
try {
window.getActivePage().openEditor(input, ViewDashboardEditorPart.ID);
} catch (PartInitException e) {
LOGGER.error("Can not initialize the view view list UI.", e);
}
}
} else {
ViewDashboardEditorPart viewsDetailInfoPart = (ViewDashboardEditorPart) editorPart;
window.getActivePage().activate(viewsDetailInfoPart);
viewsDetailInfoPart.refresh();
}
}
Aggregations