Versions Compared

Key

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

...

  • com.idera.change.notifications
  • org.eclipse.ui.forms
  1. Navigate to the META-INF folder  folder in your project and double-click click MANIFEST.MF.
    The The MANIFEST.MF file opens in Eclipse.
  2. Select the Dependencies tab, and then click Add.
  3. Choose com.idera.change.notifications, and then click OK.
    The dependency is added.
  4. Choose org.eclipse.ui.forms, and then click OK.
    The dependency is added.
  5. Press Ctrl+S to save the changes; or choose File>Save from the menu to retain the new dependencies, and then close the editor.

...

Each notification plugin requires a Notifier class  class that must implement the interface com.idera.change.notifications.api.INotifier. To do this, you subclass com.idera.change.notifications.api.AbstractNotifier and customize it.

Info

If AbstractNotifier or INotifier cannot be found in Eclipse, the target platform or plugin dependencies are not configured properly. Ensure that you have configured these prerequisites and then search again for the notifier classesnotifier classes.

To implement a notifier class

...