org.activiti.engine.delegate
接口 VariableScope

所有已知子接口:
ActivityExecution, DelegateExecution, DelegateTask, ExecutionListenerExecution, InterpretableExecution
所有已知实现类:
ExecutionEntity, ExecutionImpl, StartProcessVariableScope, TaskEntity, VariableScopeImpl

public interface VariableScope

作者:
Tom Baeyens

方法摘要
 void createVariableLocal(String variableName, Object value)
           
 Object getVariable(String variableName)
           
 Object getVariableLocal(String variableName)
           
 Set<String> getVariableNames()
           
 Set<String> getVariableNamesLocal()
           
 Map<String,Object> getVariables()
           
 Map<String,Object> getVariablesLocal()
           
 boolean hasVariable(String variableName)
           
 boolean hasVariableLocal(String variableName)
           
 boolean hasVariables()
           
 boolean hasVariablesLocal()
           
 void removeVariable(String variableName)
          Removes the variable and creates a new HistoricVariableUpdateEntity.
 void removeVariableLocal(String variableName)
          Removes the local variable and creates a new HistoricVariableUpdateEntity.
 void removeVariables()
          Removes the (local) variables and creates a new HistoricVariableUpdateEntity for each of them.
 void removeVariables(Collection<String> variableNames)
          Removes the variables and creates a new HistoricVariableUpdateEntity for each of them.
 void removeVariablesLocal()
          Removes the (local) variables and creates a new HistoricVariableUpdateEntity for each of them.
 void removeVariablesLocal(Collection<String> variableNames)
          Removes the local variables and creates a new HistoricVariableUpdateEntity for each of them.
 void setVariable(String variableName, Object value)
           
 Object setVariableLocal(String variableName, Object value)
           
 void setVariables(Map<String,? extends Object> variables)
           
 void setVariablesLocal(Map<String,? extends Object> variables)
           
 

方法详细信息

getVariables

Map<String,Object> getVariables()

getVariablesLocal

Map<String,Object> getVariablesLocal()

getVariable

Object getVariable(String variableName)

getVariableLocal

Object getVariableLocal(String variableName)

getVariableNames

Set<String> getVariableNames()

getVariableNamesLocal

Set<String> getVariableNamesLocal()

setVariable

void setVariable(String variableName,
                 Object value)

setVariableLocal

Object setVariableLocal(String variableName,
                        Object value)

setVariables

void setVariables(Map<String,? extends Object> variables)

setVariablesLocal

void setVariablesLocal(Map<String,? extends Object> variables)

hasVariables

boolean hasVariables()

hasVariablesLocal

boolean hasVariablesLocal()

hasVariable

boolean hasVariable(String variableName)

hasVariableLocal

boolean hasVariableLocal(String variableName)

createVariableLocal

void createVariableLocal(String variableName,
                         Object value)

removeVariable

void removeVariable(String variableName)
Removes the variable and creates a new HistoricVariableUpdateEntity.


removeVariableLocal

void removeVariableLocal(String variableName)
Removes the local variable and creates a new HistoricVariableUpdateEntity.


removeVariables

void removeVariables(Collection<String> variableNames)
Removes the variables and creates a new HistoricVariableUpdateEntity for each of them.


removeVariablesLocal

void removeVariablesLocal(Collection<String> variableNames)
Removes the local variables and creates a new HistoricVariableUpdateEntity for each of them.


removeVariables

void removeVariables()
Removes the (local) variables and creates a new HistoricVariableUpdateEntity for each of them.


removeVariablesLocal

void removeVariablesLocal()
Removes the (local) variables and creates a new HistoricVariableUpdateEntity for each of them.



Copyright © 2013 Alfresco. All rights reserved.