Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The sample code is to implement an annotation operation, so in the Activator.java it registers service for Alignment, Annotation and ProbeSet

Code Block
titlecom.myorg.myplugin.Activator.java
borderStylesolid
@Override
protected ServiceRegistration<?>\[\] registerService(IGBService igbService) throws Exception \{
	return new ServiceRegistration\[\] \{
		bundleContext.registerService(Operator.class, new SamplePlugin(FileTypeCategory.Alignment), null),
		bundleContext.registerService(Operator.class, new SamplePlugin(FileTypeCategory.Annotation), null),
		bundleContext.registerService(Operator.class, new SamplePlugin(FileTypeCategory.ProbeSet), null)
	};
}

...