Package org.eclipse.ui.help

Examples of org.eclipse.ui.help.IWorkbenchHelpSystem.displayHelp()


    final IWorkbenchHelpSystem helpSystem = PlatformUI.getWorkbench()
        .getHelpSystem();
    final String href = event.getParameter(PARAM_ID_HREF);

    if (href == null) {
      helpSystem.displayHelp();
    } else {
      helpSystem.displayHelpResource(href);
    }

    return null;
View Full Code Here


            {
                @Override
                public void run()
                {
                    final IWorkbenchHelpSystem helpSystem = PlatformUI.getWorkbench().getHelpSystem();
                    helpSystem.displayHelp();
                }
            };
            Actions.HELP_WINDOW.initialize( helpWindowAction );

            connectionsAction = new Action()
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.