Examples of VariableTypes


Examples of org.activiti.engine.impl.variable.VariableTypes

    return this;
  }

  protected void ensureVariablesInitialized() {
    if (this.queryVariableValue != null) {
      VariableTypes variableTypes = Context.getProcessEngineConfiguration().getVariableTypes();
      queryVariableValue.initialize(variableTypes);
    }
  }
View Full Code Here

Examples of org.camunda.bpm.engine.impl.variable.VariableTypes

    // name
    variableInstance.setName(formField.getId());

    // type
    VariableTypes variableTypes = Context.getProcessEngineConfiguration()
      .getVariableTypes();

    VariableType variableType = variableTypes.getVariableType(formField.getTypeName());
    if(variableType == null) {
      throw new ProcessEngineException("Unsupported variable type '"+formField.getTypeName()+ "'.");
    }
    variableInstance.setType(variableType);
View Full Code Here

Examples of org.camunda.bpm.engine.impl.variable.VariableTypes

    return this;
  }

  protected void ensureVariablesInitialized() {
    if (this.queryVariableValue != null) {
      VariableTypes variableTypes = Context.getProcessEngineConfiguration().getVariableTypes();
      queryVariableValue.initialize(variableTypes);
    }
  }
View Full Code Here

Examples of org.camunda.bpm.engine.impl.variable.VariableTypes

    return Boolean.class.isAssignableFrom(value.getClass()) || boolean.class.isAssignableFrom(value.getClass());
  }

  protected void ensureVariablesInitialized() {
    if (!queryVariableValues.isEmpty()) {
      VariableTypes variableTypes = Context
              .getProcessEngineConfiguration()
              .getVariableTypes();
      for(QueryVariableValue queryVariableValue : queryVariableValues) {
        queryVariableValue.initialize(variableTypes);
      }
View Full Code Here

Examples of org.camunda.bpm.engine.impl.variable.VariableTypes

    }
    return groupIds;
  }

  protected void ensureVariablesInitialized() {
    VariableTypes types = Context.getProcessEngineConfiguration().getVariableTypes();
    for(QueryVariableValue var : variables) {
      var.initialize(types);
    }
  }
View Full Code Here

Examples of org.camunda.bpm.engine.impl.variable.VariableTypes

    this.processUnfinished = true;
    return this;
  }

  protected void ensureVariablesInitialized() {
    VariableTypes types = Context.getProcessEngineConfiguration().getVariableTypes();
    for(QueryVariableValue var : variables) {
      var.initialize(types);
    }
  }
View Full Code Here

Examples of org.pshdl.interpreter.utils.IOUtil.VariableTypes

    int dimensions[] = new int[0];
    boolean isClock = false, isReset = false;
    String[] annotations = null;
    while ((tlv = readTLV(VariableTypes.name)) != null) {
      final ExecutableInputStream ex = new ExecutableInputStream(new ByteArrayInputStream(tlv.value));
      final VariableTypes it = (VariableTypes) tlv.type;
      switch (it) {
      case dimensions:
        dimensions = ex.readIntArray();
        break;
      case flags:
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.