| edu.iu.uis.eden.engine.node.BranchService
All known Subclasses: edu.iu.uis.eden.engine.node.BranchServiceImpl,
BranchService | public interface BranchService (Code) | | A service providing data access for
Branch instances.
author: ewestfal |
deleteBranchStates | public void deleteBranchStates(List statesToBeDeleted)(Code) | | |
getScopedVariableValue | public String getScopedVariableValue(Branch branch, String name)(Code) | | Responsible for inspecting the branch hierarchy/scope and returning a value
for the variable name if it exists somewere in scope.
Parameters: branch - the lowermost scope to start resolution a value for the key if it exists somewere in scope |
setScopedVariableValue | public String setScopedVariableValue(Branch branch, String name, String value)(Code) | | Responsible for setting a value in the branch hierarchy/scope. If the variable name
exists in a scope, it will be updated as opposed to created in a lower scope.
Parameters: branch - the lowermost scope to start resolution Parameters: value - the value to set for the variable the replaced value of the variable, if the variable was already defined, or null otherwise |
|
|