2014-11-21 09:19:35 +01:00
|
|
|
module.exports = {
|
2015-05-08 15:27:39 +02:00
|
|
|
__init__: [
|
2017-05-12 16:13:07 +02:00
|
|
|
'adaptiveLabelPositioningBehavior',
|
2015-05-08 15:27:39 +02:00
|
|
|
'appendBehavior',
|
2016-04-20 17:31:42 +02:00
|
|
|
'copyPasteBehavior',
|
2015-07-13 10:37:43 +02:00
|
|
|
'createBoundaryEventBehavior',
|
2015-10-06 12:33:21 +02:00
|
|
|
'createDataObjectBehavior',
|
2015-08-19 11:12:29 +02:00
|
|
|
'createParticipantBehavior',
|
2016-01-06 00:28:01 +01:00
|
|
|
'dataInputAssociationBehavior',
|
|
|
|
'deleteLaneBehavior',
|
2017-05-12 16:13:07 +02:00
|
|
|
'dropOnFlowBehavior',
|
2016-06-26 23:42:11 +02:00
|
|
|
'importDockingFix',
|
2016-03-08 14:12:52 +01:00
|
|
|
'labelBehavior',
|
2015-08-11 11:58:30 +02:00
|
|
|
'modelingFeedback',
|
2017-05-12 16:13:07 +02:00
|
|
|
'removeElementBehavior',
|
2015-08-19 11:12:29 +02:00
|
|
|
'removeParticipantBehavior',
|
2015-10-10 01:40:52 +02:00
|
|
|
'replaceConnectionBehavior',
|
|
|
|
'replaceElementBehaviour',
|
2015-10-15 23:50:15 +02:00
|
|
|
'resizeLaneBehavior',
|
2017-05-12 16:13:07 +02:00
|
|
|
'toggleElementCollapseBehaviour',
|
2016-06-16 13:57:32 +02:00
|
|
|
'unclaimIdBehavior',
|
2017-05-12 16:13:07 +02:00
|
|
|
'unsetDefaultFlowBehavior',
|
|
|
|
'updateFlowNodeRefsBehavior'
|
2015-05-08 15:27:39 +02:00
|
|
|
],
|
2017-05-12 16:13:07 +02:00
|
|
|
adaptiveLabelPositioningBehavior: [ 'type', require('./AdaptiveLabelPositioningBehavior') ],
|
2015-03-23 15:14:54 +01:00
|
|
|
appendBehavior: [ 'type', require('./AppendBehavior') ],
|
2016-04-20 17:31:42 +02:00
|
|
|
copyPasteBehavior: [ 'type', require('./CopyPasteBehavior') ],
|
2015-07-13 10:37:43 +02:00
|
|
|
createBoundaryEventBehavior: [ 'type', require('./CreateBoundaryEventBehavior') ],
|
2015-10-06 12:33:21 +02:00
|
|
|
createDataObjectBehavior: [ 'type', require('./CreateDataObjectBehavior') ],
|
2015-08-19 11:12:29 +02:00
|
|
|
createParticipantBehavior: [ 'type', require('./CreateParticipantBehavior') ],
|
2016-01-06 00:28:01 +01:00
|
|
|
dataInputAssociationBehavior: [ 'type', require('./DataInputAssociationBehavior') ],
|
|
|
|
deleteLaneBehavior: [ 'type', require('./DeleteLaneBehavior') ],
|
2017-05-12 16:13:07 +02:00
|
|
|
dropOnFlowBehavior: [ 'type', require('./DropOnFlowBehavior') ],
|
2016-06-26 23:42:11 +02:00
|
|
|
importDockingFix: [ 'type', require('./ImportDockingFix') ],
|
2016-03-08 14:12:52 +01:00
|
|
|
labelBehavior: [ 'type', require('./LabelBehavior') ],
|
2015-08-11 11:58:30 +02:00
|
|
|
modelingFeedback: [ 'type', require('./ModelingFeedback') ],
|
2015-10-10 01:40:52 +02:00
|
|
|
replaceConnectionBehavior: [ 'type', require('./ReplaceConnectionBehavior') ],
|
2017-05-12 16:13:07 +02:00
|
|
|
removeParticipantBehavior: [ 'type', require('./RemoveParticipantBehavior') ],
|
2015-10-10 01:40:52 +02:00
|
|
|
replaceElementBehaviour: [ 'type', require('./ReplaceElementBehaviour') ],
|
2015-10-15 23:50:15 +02:00
|
|
|
resizeLaneBehavior: [ 'type', require('./ResizeLaneBehavior') ],
|
2016-04-18 16:15:00 +02:00
|
|
|
removeElementBehavior: [ 'type', require('./RemoveElementBehavior') ],
|
2017-05-12 16:13:07 +02:00
|
|
|
toggleElementCollapseBehaviour : [ 'type', require('./ToggleElementCollapseBehaviour') ],
|
2016-06-16 13:57:32 +02:00
|
|
|
unclaimIdBehavior: [ 'type', require('./UnclaimIdBehavior') ],
|
2017-05-12 16:13:07 +02:00
|
|
|
updateFlowNodeRefsBehavior: [ 'type', require('./UpdateFlowNodeRefsBehavior') ],
|
|
|
|
unsetDefaultFlowBehavior: [ 'type', require('./UnsetDefaultFlowBehavior') ]
|
2015-07-20 11:59:41 +02:00
|
|
|
};
|