Package org.eclipse.ui.help

Examples of org.eclipse.ui.help.AbstractHelpUI


  private class CompatibilityIHelpImplementation implements IHelp {

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


    }

    /** @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);
      }
    }
View Full Code Here

    }

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

TOP

Related Classes of org.eclipse.ui.help.AbstractHelpUI

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.