Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

JWT Modifications

Revision as of 13:55, 14 July 2008 by Csaad.gmx.net (Talk | contribs) (New page: This page provides information on how to add modify and add new features to the JWT Workflow Editor (JWT-WE). == Overview == The JWT Workflow Editor defines several extension points and ...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This page provides information on how to add modify and add new features to the JWT Workflow Editor (JWT-WE).

Overview

The JWT Workflow Editor defines several extension points and mechanisms that allow users to customize and extend the abilities and properties of JWT-WE without changing the editor itself. However, there may be cases in which it becomes necessary to alter the Workflow Editor code itself, notably when the new features need to be implemented by committers of the JWT project. This page is intended to describe how JWT committers can deal with recurring tasks when adding features to the Workflow Editor like adding new options to the Eclipse preferences dialog.

Integrate new Features into JWT-WE

Adding Preferences

notes:

- konstanten in preferenceconstants - standardwerte in preferenceinitializer - zugriffselemente in preferencereader - beschriftung in plugin*.properties - feldelemente in preferencepages - preferences über preferencereader auslesen - aktualisierung durch preferencechangelistener

neue seite: - category in preferenceconstants - category in preferencechangelistener - page in pages erstellen - seite in plugin.xml hinzufügen - category in plugin.properties eintragen

Adding Menu/Toolbar Entry

Back to the top