|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public static interface TestResultTable.TreeNodeObserver
Observer interface to watch a single tree node.
Method Summary | |
---|---|
void |
countersInvalidated(TestResultTable.TreeNode node)
The statistics counters of the node have changed. |
void |
insertedBranch(TestResultTable.TreeNode parent,
TestResultTable.TreeNode newNode,
int index)
A TreeNode has been inserted into the given parent node. |
void |
insertedResult(TestResultTable.TreeNode parent,
TestResult test,
int index)
A TestResult has been inserted into the given parent node. |
void |
removedBranch(TestResultTable.TreeNode parent,
int index)
A TreeNode has been removed from the given parent node. |
void |
removedResult(TestResultTable.TreeNode parent,
TestResult test,
int index)
A TestResult has been removed from the given parent node. |
void |
replacedResult(TestResultTable.TreeNode parent,
TestResult oldTest,
TestResult newTest,
int index)
A TestResult has been replaced in the given parent node. |
Method Detail |
---|
void insertedBranch(TestResultTable.TreeNode parent, TestResultTable.TreeNode newNode, int index)
parent
- The node which acquired the new node. This is the same as
the object that the observer attached to.newNode
- The node which was added.index
- The index at which the node was added.void insertedResult(TestResultTable.TreeNode parent, TestResult test, int index)
parent
- The node which acquired the new test. This is the same as
the object that the observer attached to.test
- The test which was added.index
- The index at which the test was added.void replacedResult(TestResultTable.TreeNode parent, TestResult oldTest, TestResult newTest, int index)
parent
- The node which acquired the new test. This is the same as
the object that the observer attached to.oldTest
- The test which was replaced.newTest
- The test which took the old test's place.index
- The index at which activity occurred.void removedBranch(TestResultTable.TreeNode parent, int index)
parent
- The node which acquired the new test. This is the same as
the object that the observer attached to.index
- The index at which the removed node resided in the parent.void removedResult(TestResultTable.TreeNode parent, TestResult test, int index)
parent
- The node which acquired the new test. This is the same as
the object that the observer attached to.test
- The test which was removed.index
- The index at which the removed test resided in the parent.void countersInvalidated(TestResultTable.TreeNode node)
node
- The node whose counters were invalidated.
This is the same as the node which this observer attached to.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |