Package com.founder.fix.bpmn2extensions.variableconfig

Examples of com.founder.fix.bpmn2extensions.variableconfig.DataVariableDataType


        JsonNode dataVariableNode = JsonConverterUtil.getChildElementByProperty("process_datavariable", "id", (ArrayNode)flowBase);
        JsonNode complexItemsNode = dataVariableNode.get("complexItems");
       
        //加载数据类型
        JsonNode dataTypeNode = JsonConverterUtil.getChildElementByProperty("datatype", "id",(ArrayNode)complexItemsNode);
        DataVariableDataType dataVariableDataType = dataVariableConfig.getDataVariableDataType();
    List<DataTypeDef> dataTypeDefs = dataVariableDataType.getDataTypeDef();
    ArrayNode dataTypeArrayNode = objectMapper.createArrayNode();
    for(DataTypeDef dataTypeDef :dataTypeDefs){
      ObjectNode objectNode = objectMapper.createObjectNode();
          objectNode.put("id",dataTypeDef.getId());
          objectNode.put("title", dataTypeDef.getName());
View Full Code Here


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetDataVariableDataType(DataVariableDataType newDataVariableDataType, NotificationChain msgs) {
    DataVariableDataType oldDataVariableDataType = dataVariableDataType;
    dataVariableDataType = newDataVariableDataType;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, VariableconfigPackage.DATA_VARIABLE_CONFIG__DATA_VARIABLE_DATA_TYPE, oldDataVariableDataType, newDataVariableDataType);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here

TOP

Related Classes of com.founder.fix.bpmn2extensions.variableconfig.DataVariableDataType

Copyright © 2018 www.massapicom. 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.