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

Difference between revisions of "BPMN2-Modeler/DeveloperTutorials"

m (Bbrodt.redhat.com moved page BPMN2-Modeler/PluginTutorials to BPMN2-Modeler/DeveloperTutorials: Renamed, more generic)
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 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.
 
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.
  
* [[BPMN2-Modeler/PluginTutorials/ExtendingRuntime| Extending the BPMN2 Runtime]] - Example how to extend the runtime  
+
* [[BPMN2-Modeler/DeveloperTutorials/ExtendingRuntime| Extending the BPMN2 Runtime]] - Example how to extend the runtime  
* [[BPMN2-Modeler/PluginTutorials/CreateCustomTask| Creating a CustomTask]] - Example for a CustomTask Extension
+
* [[BPMN2-Modeler/DeveloperTutorials/CreateCustomTask| Creating a CustomTask]] - Example for a CustomTask Extension
* [[BPMN2-Modeler/PluginTutorials/ModelExtension| Extending the model]] - Example how to extend the bpmn model
+
* [[BPMN2-Modeler/DeveloperTutorials/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
 
* [http://ralph.soika.com/extending-eclipse-bpmn2-plugin-part-1/ Blog - How Extending Eclipse BPMN2 Plugin] - Tutorial from Ralph Soika
* [[BPMN2-Modeler/PluginTutorials/AddingCDATA| Adding a CDATA element]] - How to add an extension element with a CDATA section
+
* [[BPMN2-Modeler/DeveloperTutorials/AddingCDATA| Adding a CDATA element]] - How to add an extension element with a CDATA section

Revision as of 15:06, 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