Package org.eclipse.ui.console

Examples of org.eclipse.ui.console.AbstractConsole


   
    protected void updateHelp() {
      IConsole console = getConsole();
      String helpContextId = null;
    if (console instanceof AbstractConsole) {
      AbstractConsole abs = (AbstractConsole) console;
      helpContextId = abs.getHelpContextId();
    }
    if (helpContextId == null) {
      helpContextId = IConsoleHelpContextIds.CONSOLE_VIEW;
    }
    PlatformUI.getWorkbench().getHelpSystem().setHelp(getPageBook().getParent(), helpContextId);
View Full Code Here

TOP

Related Classes of org.eclipse.ui.console.AbstractConsole

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.