if(variable == null) throw new UEngineException("Undeclared process variable reference : " + varKey);
ProcessVariableValue theValue = definition.getProcessVariable(varKey).getMultiple(instance, scope);
//ProcessVariableValue theValue = instance.getMultiple(scope, varKey);
theValue.beforeFirst();
if(theValue.size()==1)
return theValue.getValue();
else
return theValue;
}else{