Package org.fest.swing.cell
Interface JListCellReader
- All Known Implementing Classes:
BasicJListCellReader
Understands reading the internal value of a cell in a
JList 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 aas expected in a test.JListNote: Implementations of this method should not use the event dispatch thread (EDT.) Clients are responsible for invoking this method in the EDT.
- Parameters:
list- the givenJList.index- the index of the cell.- Returns:
- the internal value of a cell in a
JListas expected in a test.
-