Package org.eclipse.core.resources.refresh

Examples of org.eclipse.core.resources.refresh.RefreshProvider


    IExtensionPoint extensionPoint = Platform.getExtensionRegistry().getExtensionPoint(ResourcesPlugin.PI_RESOURCES, ResourcesPlugin.PT_REFRESH_PROVIDERS);
    IConfigurationElement[] infos = extensionPoint.getConfigurationElements();
    List providerList = new ArrayList(infos.length);
    for (int i = 0; i < infos.length; i++) {
      IConfigurationElement configurationElement = infos[i];
      RefreshProvider provider = null;
      try {
        provider = (RefreshProvider) configurationElement.createExecutableExtension("class"); //$NON-NLS-1$
      } catch (CoreException e) {
        Policy.log(IStatus.WARNING, Messages.refresh_installError, e);
      }
View Full Code Here

TOP

Related Classes of org.eclipse.core.resources.refresh.RefreshProvider

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.