Package org.eclipse.help

Examples of org.eclipse.help.AbstractTocProvider


      IConfigurationElement[] elements = registry.getConfigurationElementsFor(EXTENSION_POINT_ID_TOC);
      for (int i=0;i<elements.length;++i) {
        IConfigurationElement elem = elements[i];
        if (elem.getName().equals(ELEMENT_NAME_TOC_PROVIDER)) {
          try {
            AbstractTocProvider provider = (AbstractTocProvider)elem.createExecutableExtension(ATTRIBUTE_NAME_CLASS);
            providers.add(provider);
          }
          catch (CoreException e) {
            // log and skip
            String msg = "Error instantiating help table of contents provider class \"" + elem.getAttribute(ATTRIBUTE_NAME_CLASS) + '"'; //$NON-NLS-1$
View Full Code Here

TOP

Related Classes of org.eclipse.help.AbstractTocProvider

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.