Package org.eclipse.ui.intro.config

Examples of org.eclipse.ui.intro.config.IIntroURL


    window.getShell().layout();
    return intro;
  }

  protected void executeShortcut(String url) {
    IIntroURL introURL = IntroURLFactory.createIntroURL(url);
    if (introURL != null) {
      IIntroPart intro = closeLaunchBar(true);
      if (intro == null)
        return;
      introURL.execute();
    }
  }
View Full Code Here


    if (intro == null)
      return;
    StringBuffer url = new StringBuffer();
    url.append(LAUNCH_COMMAND_BASE);
    url.append(id);
    IIntroURL introURL = IntroURLFactory.createIntroURL(url.toString());
    if (introURL != null)
      introURL.execute();
  }
View Full Code Here

    IIntroManager introManager = PlatformUI.getWorkbench().getIntroManager();
    IIntroPart intro = introManager
        .showIntro(PlatformUI.getWorkbench().getActiveWorkbenchWindow(), false);
    if (intro == null)
      return false;
    IIntroURL url = IntroURLFactory.createIntroURL("http://org.eclipse.ui.intro/showPage?id=" + id); //$NON-NLS-1$
    return url.execute();
  }
View Full Code Here

            url.append("?"); //$NON-NLS-1$
        else
            // command already has parameters.
            url.append("&"); //$NON-NLS-1$
        url.append(retrieveInitialQuery());
        IIntroURL introURL = IntroURLFactory.createIntroURL(url.toString());
        if (introURL != null)
            return introURL.execute();
        return false;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.intro.config.IIntroURL

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.