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"

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/DeveloperTutorials/ExtendingRuntime| Extending the BPMN2 Runtime]] - Example how to extend the runtime
+
* [[BPMN2-Modeler/DeveloperTutorials/ExtendingRuntime| Extending the BPMN2 Runtime]] - Understanding the basics of BPMN2 Runtime extensions
* [[BPMN2-Modeler/DeveloperTutorials/CreateCustomTask| Creating a CustomTask]] - Example for a CustomTask Extension
+
* [[BPMN2-Modeler/DeveloperTutorials/ModelExtension| Extending the model]] - Different ways of extending the BPMN2 model
* [[BPMN2-Modeler/DeveloperTutorials/ModelExtension| Extending the model]] - Example how to extend the bpmn model
+
* [[BPMN2-Modeler/DeveloperTutorials/ModelExtensionBYOM| Bring your own model!]] - Extending the BPMN2 model with an external EMF model
* [[BPMN2-Modeler/DeveloperTutorials/CustomPropertyTabs| Extending property tabs]] -  How to manage properties of a custom task element
+
* [[BPMN2-Modeler/DeveloperTutorials/CreateCustomTask| Creating a CustomTask]] - Creating a CustomTask Extension
* [http://ralph.soika.com/extending-eclipse-bpmn2-plugin-part-1/ Blog - How Extending Eclipse BPMN2 Plugin] - Tutorial from Ralph Soika
+
* [[BPMN2-Modeler/DeveloperTutorials/CustomPropertyTabs| Extending property tabs]] -  Building Property Sheets for model extension data
* [[BPMN2-Modeler/DeveloperTutorials/AddingCDATA| Adding a CDATA element]] - How to add an extension element with a CDATA section
+
* [http://ralph.soika.com/extending-eclipse-bpmn2-plugin-part-1/ Blog - Extending Eclipse BPMN2 Plugin] - A Tutorial by Ralph Soika
 +
* [[BPMN2-Modeler/DeveloperTutorials/AddingCDATA| Adding a CDATA element]] - Adding an extension element with a CDATA section

Revision as of 17:43, 11 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