public interface VarLookup
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getVariable(java.lang.String name,
cookxml.core.DecodeEngine decodeEngine)
Get a variable by its name.
|
void |
setVariable(java.lang.String name,
java.lang.Object value,
cookxml.core.DecodeEngine decodeEngine)
Set a variable by its name.
|
java.lang.Object getVariable(java.lang.String name, cookxml.core.DecodeEngine decodeEngine) throws VarLookupException
name
- the name of the variabledecodeEngine
- the DecodeEngine being used.VarLookupException
- in case of error.void setVariable(java.lang.String name, java.lang.Object value, cookxml.core.DecodeEngine decodeEngine) throws VarLookupException
name
- the name of the variablevalue
- the new value for the variabledecodeEngine
- the DecodeEngine being used.VarLookupException
- in case of error.