2014-11-21 09:19:35 +01:00
|
|
|
module.exports = {
|
2015-05-08 15:27:39 +02:00
|
|
|
__init__: [
|
|
|
|
'appendBehavior',
|
2015-07-13 10:37:43 +02:00
|
|
|
'createBoundaryEventBehavior',
|
2015-05-21 14:55:10 +02:00
|
|
|
'createOnFlowBehavior',
|
2015-08-19 11:12:29 +02:00
|
|
|
'createParticipantBehavior',
|
2015-08-11 11:58:30 +02:00
|
|
|
'modelingFeedback',
|
2015-08-19 11:12:29 +02:00
|
|
|
'moveStartEventBehavior',
|
|
|
|
'removeParticipantBehavior',
|
|
|
|
'replaceConnectionBehavior'
|
2015-05-08 15:27:39 +02:00
|
|
|
],
|
2015-03-23 15:14:54 +01:00
|
|
|
appendBehavior: [ 'type', require('./AppendBehavior') ],
|
2015-07-13 10:37:43 +02:00
|
|
|
createBoundaryEventBehavior: [ 'type', require('./CreateBoundaryEventBehavior') ],
|
2015-05-21 14:55:10 +02:00
|
|
|
createOnFlowBehavior: [ 'type', require('./CreateOnFlowBehavior') ],
|
2015-08-19 11:12:29 +02:00
|
|
|
createParticipantBehavior: [ 'type', require('./CreateParticipantBehavior') ],
|
2015-08-11 11:58:30 +02:00
|
|
|
modelingFeedback: [ 'type', require('./ModelingFeedback') ],
|
2015-08-19 11:12:29 +02:00
|
|
|
moveStartEventBehavior: [ 'type', require('./MoveStartEventBehavior') ],
|
|
|
|
removeParticipantBehavior: [ 'type', require('./RemoveParticipantBehavior') ],
|
|
|
|
replaceConnectionBehavior: [ 'type', require('./ReplaceConnectionBehavior') ]
|
2015-07-20 11:59:41 +02:00
|
|
|
};
|