blob: 7ca6b918c38bdec19742806adeec02ffb39e5ce3 [file] [log] [blame]
package org.eclipse.help.internal.contributors;
/*
* Licensed Materials - Property of IBM,
* WebSphere Studio Workbench
* (c) Copyright IBM Corp 2000
*/
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IPluginDescriptor;
/**
* Contributor factory.
*/
public interface ContributorCreator {
/**
*/
Contributor create(
IPluginDescriptor plugin,
IConfigurationElement configuration);
}