Search in sources :

Example 1 with InclusiveGateway

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;
}
Also used : InclusiveGateway(org.activiti.bpmn.model.InclusiveGateway)

Aggregations

InclusiveGateway (org.activiti.bpmn.model.InclusiveGateway)1