Examples of displayContext()


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

    if (context == null) {
      throw new IllegalArgumentException();
    }
    AbstractHelpUI helpUI = getHelpUI();
    if (helpUI != null) {
      helpUI.displayContext(context, x, y);
    }
  }

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

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

   */
  public void displayHelp(IContext context) {
    Point point = computePopUpLocation(Display.getCurrent());
    AbstractHelpUI helpUI = getHelpUI();
    if (helpUI != null) {
      helpUI.displayContext(context, point.x, point.y);
    }
  }

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

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

    /** @deprecated */
    public void displayContext(IContext context, int x, int y) {
      // real method - forward to help UI if available
      AbstractHelpUI helpUI = getHelpUI();
      if (helpUI != null) {
        helpUI.displayContext(context, x, y);
      }
    }

    /** @deprecated */
    public void displayContext(String contextId, 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.