-
- All Known Implementing Classes:
ReadonlyVariableCallback
public interface VariantVariableCallbackTheVariantVariableCallbackcan be implemented by objects that want to intercept/monitor reading and writing of aVariantVariable's value.- Version:
- 1.7
- Author:
- Frank Fock
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidupdateVariable(VariantVariable variable)The supplied variable needs to be updated because it is about to be read.voidvariableUpdated(VariantVariable variable)The supplied variable's value has been updated.
-
-
-
Method Detail
-
variableUpdated
void variableUpdated(VariantVariable variable)
The supplied variable's value has been updated.- Parameters:
variable- theVariantVariablethat has been updated.
-
updateVariable
void updateVariable(VariantVariable variable)
The supplied variable needs to be updated because it is about to be read.- Parameters:
variable- theVariantVariablethat will be read.
-
-