Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "BPMN2-Modeler/DeveloperTutorials"

Line 1: Line 1:
The public API for BPMN2 Modeler plug-in extensions is constantly evolving, as we try to figure out what features are needed, and how they can best be implemented. API changes will only happen on minor releases of the modeler (e.g. version 1.2.0 => major = 1, minor = 2 service update=0.) We also try to keep API changes aligned with Eclipse releases, so that version 1.0.x of the modeler is targeted for Kepler, 1.1.x for Luna and 1.2.x for Mars. For this reason, we've provided tutorials for each of the Eclipse target platforms.
+
The public API for BPMN2 Modeler plug-in extensions is constantly evolving as we try to figure out what features are needed and how they can best be implemented. API changes when and if they are required, will only happen on minor releases of the modeler (e.g. version 1.2.0 => major = 1, minor = 2 service update=0.) We also try to keep API changes aligned with Eclipse releases, so that version 1.0.x of the modeler is targeted for Kepler, 1.1.x for Luna and 1.2.x for Mars. These tutorials will describe specific changes for each of the Eclipse target platforms.
  
== Mars ==
+
* [[BPMN2-Modeler/PluginTutorials/ExtendingRuntime| Extending the BPMN2 Runtime]] - Example how to extend the runtime
 
+
* [[BPMN2-Modeler/PluginTutorials/CreateCustomTask| Creating a CustomTask]] - Example for a CustomTask Extension
== Luna ==
+
* [[BPMN2-Modeler/PluginTutorials/ModelExtension| Extending the model]] - Example how to extend the bpmn model
 
+
* [http://ralph.soika.com/extending-eclipse-bpmn2-plugin-part-1/ Blog - How Extending Eclipse BPMN2 Plugin] - Tutorial from Ralph Soika
== Kepler ==
+
* [[BPMN2-Modeler/PluginTutorials/AddingCDATA| Adding a CDATA element]] - How to add an extension element with a CDATA section

Revision as of 14:59, 10 March 2015

The public API for BPMN2 Modeler plug-in extensions is constantly evolving as we try to figure out what features are needed and how they can best be implemented. API changes when and if they are required, will only happen on minor releases of the modeler (e.g. version 1.2.0 => major = 1, minor = 2 service update=0.) We also try to keep API changes aligned with Eclipse releases, so that version 1.0.x of the modeler is targeted for Kepler, 1.1.x for Luna and 1.2.x for Mars. These tutorials will describe specific changes for each of the Eclipse target platforms.

Back to the top