Examples of IIntroPart


Examples of org.eclipse.ui.intro.IIntroPart

   *
   * @see org.eclipse.help.search.LuceneSearchParticipant#open(java.lang.String)
   */
  public boolean open(String id) {
    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

Examples of org.eclipse.ui.intro.IIntroPart

    /**
     * Returns the Intro Part.
     */
    public static IIntroPart getIntro() {
        IIntroPart introPart = PlatformUI.getWorkbench().getIntroManager()
            .getIntro();
        return introPart;
    }
View Full Code Here

Examples of org.eclipse.ui.intro.IIntroPart

    /**
     * Returns the Intro Part after forcing an open on it.
     */
    public static IIntroPart showIntro(boolean standby) {
        IIntroPart introPart = PlatformUI.getWorkbench().getIntroManager()
            .showIntro(PlatformUI.getWorkbench().getActiveWorkbenchWindow(),
                standby);
        return introPart;
    }
View Full Code Here

Examples of org.eclipse.ui.intro.IIntroPart

     */
    private boolean setStandbyState(String state) {
        if (state == null)
            return false;
        boolean standby = state.equals(VALUE_TRUE) ? true : false;
        IIntroPart introPart = IntroPlugin.showIntro(standby);
        if (introPart == null)
            return false;
        return true;
    }
View Full Code Here

Examples of org.eclipse.ui.intro.IIntroPart

        return query.toString();
    }


    private boolean switchToLaunchBar() {
        IIntroPart intro = PlatformUI.getWorkbench().getIntroManager()
            .getIntro();
        if (intro == null)
            return false;

        CustomizableIntroPart cpart = (CustomizableIntroPart) intro;
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.