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