use of com.cubrid.common.ui.common.dialog.AboutDialog in project cubrid-manager by CUBRID.
the class AboutAction method run.
public void run() {
IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
if (window == null) {
return;
}
new AboutDialog(window.getShell(), productName, versionId, aboutImageDescriptor).open();
}
Aggregations