/*
* This file is part of the pellet4topbraid project.
* Homepage: http://code.google.com/p/pellet4topbraid/
*
*/
package pellet4topbraid.sm;
import org.topbraid.core.activator.IPluginActivator;
import org.topbraid.spin.sparqlmotion.modules.GenericModuleType;
import org.topbraid.spin.sparqlmotion.modules.SMModuleFactory;
public class PelletPluginActivator implements IPluginActivator {
@Override
public void activate() {
// Called when TopBraid starts up to register new SM module type
SMModuleFactory.get().registerModuleType(
new ApplyPelletModule(),
new GenericModuleType( ApplyPelletModule.class ),
"urn:x-pellet4topbraid#ApplyPellet"
);
}
}