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 4: Line 4:
 
* [[BPMN2-Modeler/DeveloperTutorials/CreateCustomTask| Creating a CustomTask]] - Example for a CustomTask Extension
 
* [[BPMN2-Modeler/DeveloperTutorials/CreateCustomTask| Creating a CustomTask]] - Example for a CustomTask Extension
 
* [[BPMN2-Modeler/DeveloperTutorials/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
 +
* [[BPMN2-Modeler/DeveloperTutorials/CustomPropertyTabs| Extending property tabs]] -  How to manage properties of a custom task element
 
* [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/DeveloperTutorials/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 05:46, 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