Examples of ReceiveTask


Examples of org.activiti.bpmn.model.ReceiveTask

    return ELEMENT_TASK_RECEIVE;
  }
 
  @Override
  protected BaseElement convertXMLToElement(XMLStreamReader xtr, BpmnModel model) throws Exception {
    ReceiveTask receiveTask = new ReceiveTask();
    BpmnXMLUtil.addXMLLocation(receiveTask, xtr);
    parseChildElements(getXMLElementName(), receiveTask, model, xtr);
    return receiveTask;
  }
View Full Code Here

Examples of org.activiti.bpmn.model.ReceiveTask

  protected void convertElementToJson(ObjectNode propertiesNode, FlowElement flowElement) {
   
  }
 
  protected FlowElement convertJsonToElement(JsonNode elementNode, JsonNode modelNode, Map<String, JsonNode> shapeMap) {
    ReceiveTask task = new ReceiveTask();
    return task;
  }
View Full Code Here

Examples of org.activiti.bpmn.model.ReceiveTask

    return ELEMENT_TASK_RECEIVE;
  }
 
  @Override
  protected BaseElement convertXMLToElement(XMLStreamReader xtr) throws Exception {
    ReceiveTask receiveTask = new ReceiveTask();
    parseChildElements(getXMLElementName(), receiveTask, xtr);
    return receiveTask;
  }
View Full Code Here

Examples of org.activiti.bpmn.model.ReceiveTask

  protected void convertElementToJson(ObjectNode propertiesNode, FlowElement flowElement) {
   
  }
 
  protected FlowElement convertJsonToElement(JsonNode elementNode, JsonNode modelNode, Map<String, JsonNode> shapeMap) {
    ReceiveTask task = new ReceiveTask();
    return task;
  }
View Full Code Here

Examples of org.activiti.bpmn.model.ReceiveTask

    super(fp, "ReceiveTask", "Add receive task");
  }

  @Override
  public Object[] create(ICreateContext context) {
    ReceiveTask newReceiveTask = new ReceiveTask();
    addObjectToContainer(context, newReceiveTask, "Receive Task");

    return new Object[] { newReceiveTask };
  }
View Full Code Here

Examples of org.eclipse.bpmn2.ReceiveTask

            if (result == null)
                result = defaultCase(theEObject);
            return result;
        }
        case Bpmn2Package.RECEIVE_TASK: {
            ReceiveTask receiveTask = (ReceiveTask) theEObject;
            T result = caseReceiveTask(receiveTask);
            if (result == null)
                result = caseTask(receiveTask);
            if (result == null)
                result = caseActivity(receiveTask);
View Full Code Here

Examples of org.eclipse.bpmn2.ReceiveTask

  protected void convertElementToJson(ObjectNode propertiesNode, FlowElement flowElement) {
   
  }
 
  protected FlowElement convertJsonToElement(JsonNode elementNode, JsonNode modelNode, Map<String, JsonNode> shapeMap) {
    ReceiveTask task = Bpmn2Factory.eINSTANCE.createReceiveTask();// ReceiveTask();
    return task;
  }
View Full Code Here

Examples of org.eclipse.bpmn2.ReceiveTask

      super(fp, "Receive Task", "Task that is completed when a message arrives");
    }

    @Override
    protected Task createFlowElement(ICreateContext context) {
      ReceiveTask task = ModelHandler.FACTORY.createReceiveTask();
      task.setName("Receive Task");
      task.setImplementation("##unspecified");
      return task;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.