Examples of IHelpProvider


Examples of org.eclipse.help.internal.HelpPlugin.IHelpProvider

   *         <code>null</code> if the help resource could not be found and
   *         opened
   * @since 3.0
   */
  public static InputStream getHelpContent(String href, String locale) {
    IHelpProvider provider = HelpPlugin.getDefault().getHelpProvider();
    if (provider != null) {
      return provider.getHelpContent(href, locale);
    }
    return null;
  }
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.