Examples of displayHelpResource()


Examples of org.eclipse.ui.help.AbstractHelpUI.displayHelpResource()

    if (href == null) {
      throw new IllegalArgumentException();
    }
    AbstractHelpUI helpUI = getHelpUI();
    if (helpUI != null) {
      helpUI.displayHelpResource(href);
    }
  }

  /*
   * (non-Javadoc)
 
View Full Code Here

Examples of org.eclipse.ui.help.AbstractHelpUI.displayHelpResource()

    /** @deprecated */
    public void displayHelpResource(String href) {
      // real method - forward to help UI if available
      AbstractHelpUI helpUI = getHelpUI();
      if (helpUI != null) {
        helpUI.displayHelpResource(href);
      }
    }

    /** @deprecated */
    public void displayHelpResource(IHelpResource helpResource) {
View Full Code Here

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

    final String href = event.getParameter(PARAM_ID_HREF);

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

    return null;
  }
}
View Full Code Here

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

            l.setText("<a>Open User guide</a>  ");
            l.addSelectionListener(new SelectionAdapter() {
             
              public void widgetSelected(SelectionEvent e) {
                IWorkbenchHelpSystem helpSystem = PlatformUI.getWorkbench().getHelpSystem();
                helpSystem.displayHelpResource("/com.onpositive.gae.tools.core/html/overview.html");
              }
            });
            Link l1 = new Link(c, SWT.NONE);
            l1.addSelectionListener(new SelectionAdapter() {
             
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.