blob: 8d309589d838f808be2f9645f21d301b2c612072 [file] [log] [blame]
package org.eclipse.help.internal.contributors.xml;
/*
* Licensed Materials - Property of IBM,
* WebSphere Studio Workbench
* (c) Copyright IBM Corp 2000
*/
import org.eclipse.core.runtime.*;
import org.eclipse.help.internal.contributors.*;
/**
* Factory for map contributors
*/
public class XMLContextContributorCreator implements ContributorCreator {
/**
* XMLTopicContributorCreator constructor.
*/
public XMLContextContributorCreator() {
super();
}
/**
* create method.
*/
public Contributor create(
IPluginDescriptor plugin,
IConfigurationElement configuration) {
return new XMLContextContributor(plugin, configuration);
}
}