blob: ec1d9103cfc13bdc7b249888b2fbf2bb2e453779 [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 topic contributors
*/
public class XMLTopicContributorCreator implements ContributorCreator {
/**
* XMLTopicContributorCreator constructor comment.
*/
public XMLTopicContributorCreator() {
super();
}
/**
* create method comment.
*/
public Contributor create(
IPluginDescriptor plugin,
IConfigurationElement configuration) {
return new XMLTopicContributor(plugin, configuration);
}
}