// MaudesimpleGUIPlugin.getDefault().find(new Path(Messages.getString("MaudeGUI.MC_KILLMAUDE"))))); //$NON-NLS-1$
//
// Show console
actShowConsole= new Action() {
public void run() {
MaudeConsoleView console = (MaudeConsoleView) UIPlugin.getDefault().getWorkbench().getActiveWorkbenchWindow().getActivePage().findView("es.upv.dsic.issi.moment.maudesimpleGUI.ui.toconsole.MaudeConsoleView");
if (console == null) {
try {
UIPlugin.getDefault().getWorkbench().getActiveWorkbenchWindow().getActivePage().showView("es.upv.dsic.issi.moment.maudesimpleGUI.ui.toconsole.MaudeConsoleView");
console = (MaudeConsoleView) UIPlugin.getDefault().getWorkbench().getActiveWorkbenchWindow().getActivePage().findView("es.upv.dsic.issi.moment.maudesimpleGUI.ui.toconsole.MaudeConsoleView");
} catch (PartInitException e) {
};
} else {
console.showConsole();
}
}
};
actShowConsole.setText(Messages.getString("MaudeGUI.MM_MAUDECONSOLE")); //$NON-NLS-1$
actShowConsole.setToolTipText(Messages.getString("MaudeGUI.MT_MAUDECONSOLE")); //$NON-NLS-1$