use of org.eclipse.bpmn2.InputOutputSpecification in project kie-wb-common by kiegroup.
the class ActivityPropertyWriter method getIoSpecification.
private InputOutputSpecification getIoSpecification() {
InputOutputSpecification ioSpecification = activity.getIoSpecification();
if (ioSpecification == null) {
ioSpecification = bpmn2.createInputOutputSpecification();
activity.setIoSpecification(ioSpecification);
}
return ioSpecification;
}
Aggregations