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 = {
__init__: [
'appendBehavior',
'createParticipantBehavior',
'createBoundaryEventBehavior',
'createOnFlowBehavior',
'replaceConnectionBehavior',
'removeParticipantBehavior',
'createParticipantBehavior',
'modelingFeedback',
'moveStartEventBehavior'
'moveStartEventBehavior',
'removeParticipantBehavior',
'replaceConnectionBehavior'
],
appendBehavior: [ 'type', require('./AppendBehavior') ],
createParticipantBehavior: [ 'type', require('./CreateParticipantBehavior') ],
createBoundaryEventBehavior: [ 'type', require('./CreateBoundaryEventBehavior') ],
createOnFlowBehavior: [ 'type', require('./CreateOnFlowBehavior') ],
replaceConnectionBehavior: [ 'type', require('./ReplaceConnectionBehavior') ],
removeParticipantBehavior: [ 'type', require('./RemoveParticipantBehavior') ],
createParticipantBehavior: [ 'type', require('./CreateParticipantBehavior') ],
modelingFeedback: [ 'type', require('./ModelingFeedback') ],
moveStartEventBehavior: [ 'type', require('./MoveStartEventBehavior') ]
moveStartEventBehavior: [ 'type', require('./MoveStartEventBehavior') ],
removeParticipantBehavior: [ 'type', require('./RemoveParticipantBehavior') ],
replaceConnectionBehavior: [ 'type', require('./ReplaceConnectionBehavior') ]
};