blob: 45497b1ca46da9ea40ec8160757a6eec61f7aee5 [file] [log] [blame]
/**
*
*/
package org.eclipse.epf.rcp.wizards;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IExtension;
import org.eclipse.core.runtime.IExtensionPoint;
import org.eclipse.core.runtime.IExtensionRegistry;
import org.eclipse.core.runtime.Platform;
import org.eclipse.epf.rcp.MainPlugin;
/**
* Manage extension point for export import contributor,
* If this extension point used in the contributing plugin, wizards from
* that plugin will be include in to export/import wizard list.
*
* @author Shashidhar Kannoori
* @since 1.0
*/
public class UIExportWizardExtensionPoint {
/**
* The extension namespace.
*/
public static final String PAGE_PROVIDERS_EXTENSION_NAMESPACE = "org.eclipse.epf.rcp"; //$NON-NLS-1$
/**
* The extension name.
*/
public static final String PAGE_PROVIDERS_EXTENSION_NAME = "exportWizards"; //$NON-NLS-1$
/**
* The extension Attributes
*/
public static final String PAGE_PROVIDER_EXTENSION_ATTR_ID = "id";
private ArrayList extensionsList = new ArrayList();
// The shared instance.
private static UIExportWizardExtensionPoint instance = null;
public static UIExportWizardExtensionPoint getInstance() {
if (instance == null) {
synchronized (UIImportWizardExtensionPoint.class) {
if (instance == null) {
instance = new UIExportWizardExtensionPoint();
}
}
}
return instance;
}
/**
* Creates a new instance.
*/
private UIExportWizardExtensionPoint() {
}
/**
* Returns all the page providers
*
* @return all the page providers.
*/
public List getPageProviders() {
return extensionsList;
}
/**
* Loads the configuration providers specified via the
* "com.ibm.process.pageProviders" extension point.
*/
public void loadExtension() {
IExtensionRegistry extensionRegistry = Platform.getExtensionRegistry();
IExtensionPoint extensionPoint = extensionRegistry.getExtensionPoint(
PAGE_PROVIDERS_EXTENSION_NAMESPACE,
PAGE_PROVIDERS_EXTENSION_NAME);
if (extensionPoint != null) {
IExtension[] extensions = extensionPoint.getExtensions();
for (int i = 0; i < extensions.length; i++) {
IExtension extension = extensions[i];
IConfigurationElement[] configElements = extension.getConfigurationElements();
for (int j = 0; j < configElements.length; j++) {
IConfigurationElement configElement = configElements[j];
try {
String id = configElement
.getAttribute(PAGE_PROVIDER_EXTENSION_ATTR_ID);
extensionsList.add(id);
} catch (Exception e) {
MainPlugin.getDefault().getLogger().logError(
"Failed to export import contribution extension points", e); //$NON-NLS-1$
}
}
}
}
}
}