Examples of VariableScope


Examples of org.jbpm.pvm.VariableScope

    return new VariableScopeIterator(this);
  }
 

  public void removeVariable(String key) {
    VariableScope variableScope = findVariableScope(key);
    if (variableScope!=null) {
      variableScope.remove(key);
    }
  }
View Full Code Here

Examples of org.jbpm.pvm.VariableScope

  }
 
  // protected variable helper methods ////////////////////////////////////////

  protected VariableScope getVariableScope() {
    VariableScope variableScope = findVariableScope();
    if (variableScope!=null) {
      return variableScope;
    }
    return processInstance.createVariableScope();
  }
View Full Code Here

Examples of org.jbpm.pvm.VariableScope

  protected List getScopeListFromExecution() {
    return execution.getVariableScopes();
  }

  protected boolean isWanted(Object executionScope) {
    VariableScope variableScope = (VariableScope) executionScope;
   
    return ( (key==null)
             || (variableScope.has(key))
           );
  }
View Full Code Here

Examples of ptolemy.actor.gt.util.VariableScope

            if (isAttributeTypeEnabled() || isAttributeValueEnabled()) {
                if (attribute instanceof Settable) {
                    Settable settable = (Settable) attribute;
                    String expression = settable.getExpression();
                    VariableScope scope = new VariableScope(object);
                    try {
                        ASTPtRootNode tree = _TYPE_PARSER
                                .generateParseTree(expression);
                        Token token = _TYPE_EVALUATOR.evaluateParseTree(tree,
                                scope);
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.