Package org.eclipse.ui.help

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


                public void run()
                {
                    try
                    {
                        final IWorkbenchHelpSystem helpSystem = PlatformUI.getWorkbench().getHelpSystem();
                        helpSystem.displayDynamicHelp();
                    }
                    catch ( Throwable e )
                    {
                        e.printStackTrace();
                    }
View Full Code Here


        // show help on startup if the user wants it
        boolean showHelp = Activator.getDefault().getPreferenceStore().getBoolean( Preferences.HELP_ON_START );
        if ( showHelp )
        {
            IWorkbenchHelpSystem helpSystem = PlatformUI.getWorkbench().getHelpSystem();
            helpSystem.displayDynamicHelp();

            NeoGraphViewPart graphView = (NeoGraphViewPart) PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().findView(
                    NeoGraphViewPart.ID );
            if ( graphView != null )
            {
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.