1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| 'use strict';
|
| var inputOutput = require('./implementation/InputOutput');
|
| module.exports = function(group, element, bpmnFactory, translate) {
|
| var inputOutputEntry = inputOutput(element, bpmnFactory, {}, translate);
|
| group.entries = group.entries.concat(inputOutputEntry.entries);
|
| return {
| getSelectedParameter: inputOutputEntry.getSelectedParameter
| };
|
| };
|
|