Package org.eclipse.ui.internal.registry

Examples of org.eclipse.ui.internal.registry.PropertyPagesRegistryReader


  /**
   * Loads property page contributors from the registry.
   */
  private void loadContributors() {
    PropertyPagesRegistryReader reader = new PropertyPagesRegistryReader(
        this);
    reader.registerPropertyPages(Platform.getExtensionRegistry());
  }
View Full Code Here


     * @see org.eclipse.core.runtime.dynamicHelpers.IExtensionChangeHandler#addExtension(org.eclipse.core.runtime.dynamicHelpers.IExtensionTracker, org.eclipse.core.runtime.IExtension)
     */
    public void addExtension(IExtensionTracker tracker, IExtension extension) {
        IConfigurationElement[] addedElements = extension.getConfigurationElements();
        for (int i = 0; i < addedElements.length; i++) {
            PropertyPagesRegistryReader reader = new PropertyPagesRegistryReader(this);
            reader.readElement(addedElements[i]);
        }
    }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.registry.PropertyPagesRegistryReader

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.