19 lines
428 B
JavaScript
19 lines
428 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var inputOutput = require('./implementation/InputOutput');
|
||
|
|
||
|
module.exports = function(group, element, bpmnFactory, translate) {
|
||
|
|
||
|
var inputOutputEntry = inputOutput(element, bpmnFactory, {
|
||
|
idPrefix: 'connector-',
|
||
|
insideConnector: true
|
||
|
}, translate);
|
||
|
|
||
|
group.entries = group.entries.concat(inputOutputEntry.entries);
|
||
|
|
||
|
return {
|
||
|
getSelectedParameter: inputOutputEntry.getSelectedParameter
|
||
|
};
|
||
|
|
||
|
};
|