Package org.eclipse.ui.help

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


   * @see org.eclipse.ui.help.IWorkbenchHelpSystem#displayHelp()
   */
  public void displayHelp() {
    AbstractHelpUI helpUI = getHelpUI();
    if (helpUI != null) {
      helpUI.displayHelp();
    }
  }
 
  /*
   * (non-Javadoc)
 
View Full Code Here


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

    /** @deprecated */
    public void displayContext(IContext context, int x, int y) {
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.