Package es.upv.dsic.issi.moment.maudesimpleGUI.ui.toconsole

Examples of es.upv.dsic.issi.moment.maudesimpleGUI.ui.toconsole.MaudeConsoleView


//        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$
View Full Code Here


//        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$
View Full Code Here

TOP

Related Classes of es.upv.dsic.issi.moment.maudesimpleGUI.ui.toconsole.MaudeConsoleView

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.