Interface TestResultTable.Observer
- Enclosing class:
TestResultTable
public static interface TestResultTable.Observer
Observer to monitor changes to a TestResultTable.
-
Method Summary
Modifier and TypeMethodDescriptionvoidupdate(TestResult oldValue, TestResult newValue) The oldValue has been replaced by the newValue.voidupdated(TestResult whichTR) The given test was changed, but previously existed in this TRT.
-
Method Details
-
update
The oldValue has been replaced by the newValue.- Parameters:
oldValue- Previous value being overwritten.newValue- The new value stored in the TRT.
-
updated
The given test was changed, but previously existed in this TRT. This is not a guarantee of change, but is the best possible hint.- Parameters:
whichTR- The test which was altered.
-