chore(modeling/behavior): order behaviors

This commit is contained in:
Nico Rehwaldt 2015-08-19 11:12:29 +02:00
parent 5c629a9889
commit fbf82e83e5
1 changed files with 8 additions and 9 deletions

View File

@ -1,21 +1,20 @@
module.exports = { module.exports = {
__init__: [ __init__: [
'appendBehavior', 'appendBehavior',
'createParticipantBehavior',
'createBoundaryEventBehavior', 'createBoundaryEventBehavior',
'createOnFlowBehavior', 'createOnFlowBehavior',
'replaceConnectionBehavior', 'createParticipantBehavior',
'removeParticipantBehavior',
'modelingFeedback', 'modelingFeedback',
'moveStartEventBehavior' 'moveStartEventBehavior',
'removeParticipantBehavior',
'replaceConnectionBehavior'
], ],
appendBehavior: [ 'type', require('./AppendBehavior') ], appendBehavior: [ 'type', require('./AppendBehavior') ],
createParticipantBehavior: [ 'type', require('./CreateParticipantBehavior') ],
createBoundaryEventBehavior: [ 'type', require('./CreateBoundaryEventBehavior') ], createBoundaryEventBehavior: [ 'type', require('./CreateBoundaryEventBehavior') ],
createOnFlowBehavior: [ 'type', require('./CreateOnFlowBehavior') ], createOnFlowBehavior: [ 'type', require('./CreateOnFlowBehavior') ],
replaceConnectionBehavior: [ 'type', require('./ReplaceConnectionBehavior') ], createParticipantBehavior: [ 'type', require('./CreateParticipantBehavior') ],
removeParticipantBehavior: [ 'type', require('./RemoveParticipantBehavior') ],
modelingFeedback: [ 'type', require('./ModelingFeedback') ], modelingFeedback: [ 'type', require('./ModelingFeedback') ],
moveStartEventBehavior: [ 'type', require('./MoveStartEventBehavior') ] moveStartEventBehavior: [ 'type', require('./MoveStartEventBehavior') ],
removeParticipantBehavior: [ 'type', require('./RemoveParticipantBehavior') ],
replaceConnectionBehavior: [ 'type', require('./ReplaceConnectionBehavior') ]
}; };