Package org.fest.swing.cell
Interface JTreeCellReader
- All Known Implementing Classes:
BasicJTreeCellReader
Understands reading the internal value of a cell in a
JTree
as expected in a test.
Note: methods in this interface are not executed in the event dispatch thread (EDT.) Clients are responsible for invoking them in the EDT.
-
Method Summary
-
Method Details
-
valueAt
Returns the internal value of a cell in a
as expected in a test.JTree
Note: Implementations of this method should not use the event dispatch thread (EDT.) Clients are responsible for invoking this method in the EDT.
- Parameters:
tree
- the givenJTree
.modelValue
- the value of a cell, retrieved from the model.- Returns:
- the internal value of a cell in a
JTree
as expected in a test.
-