Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7ca6b918c38bdec19742806adeec02ffb39e5ce3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
}

Back to the top