use of org.activiti.bpmn.model.InclusiveGateway in project Activiti by Activiti.
the class InclusiveGatewayXMLConverter method convertXMLToElement.
@Override
protected BaseElement convertXMLToElement(XMLStreamReader xtr, BpmnModel model) throws Exception {
InclusiveGateway gateway = new InclusiveGateway();
BpmnXMLUtil.addXMLLocation(gateway, xtr);
parseChildElements(getXMLElementName(), gateway, model, xtr);
return gateway;
}
Aggregations