Page tree

Versions Compared

Key

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

...

Sample plug-in

  1. to create a plugin, you need to will create (at least) two files, the MANIFEST.MF file and the Activator
  2. (you can create awe sill create a bundle that adds a new graph function
  3. create the following MANIFEST.MF file:
Panel

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: MyBundle
Bundle-SymbolicName: MyBundle
Bundle-Version: 1.0.0
Bundle-Activator: mypackage.MyActivator
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Import-Package: com.affymetrix.genometryImpl.util,
com.affymetrix.igb.osgi.service,
org.osgi.framework;version="1.5.0",
org.osgi.util.tracker;version="1.4.0"

To create plug-ins using eclipse - a Quick-Start Guide

...