Package com.sun.javatest
Interface TestResultTable.Observer
- Enclosing class:
TestResultTable
public static interface TestResultTable.Observer
Observer to monitor changes to a TestResultTable.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
update
(TestResult oldValue, TestResult newValue) The oldValue has been replaced by the newValue.void
updated
(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.
-