bpmn-js/lib/features/modeling/behavior/index.js

23 lines
969 B
JavaScript
Raw Normal View History

module.exports = {
__init__: [
'appendBehavior',
'createBoundaryEventBehavior',
'createLaneBehavior',
'createOnFlowBehavior',
'createParticipantBehavior',
'modelingFeedback',
'replaceElementBehaviour',
'removeParticipantBehavior',
'replaceConnectionBehavior'
],
appendBehavior: [ 'type', require('./AppendBehavior') ],
createBoundaryEventBehavior: [ 'type', require('./CreateBoundaryEventBehavior') ],
createLaneBehavior: [ 'type', require('./CreateLaneBehavior') ],
createOnFlowBehavior: [ 'type', require('./CreateOnFlowBehavior') ],
createParticipantBehavior: [ 'type', require('./CreateParticipantBehavior') ],
modelingFeedback: [ 'type', require('./ModelingFeedback') ],
replaceElementBehaviour: [ 'type', require('./ReplaceElementBehaviour') ],
removeParticipantBehavior: [ 'type', require('./RemoveParticipantBehavior') ],
replaceConnectionBehavior: [ 'type', require('./ReplaceConnectionBehavior') ]
};