Package org.fest.swing.driver
Interface CellRendererReader
- All Known Implementing Classes:
BasicCellRendererReader
Understands reading the value of a
Component
that used as a cell renderer.
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
-
valueFrom
Reads the value in the given cell renderer component, or returnsnull
if the component is not recognized by this reader.Note: Implementations of this method should not use the event dispatch thread (EDT.) Clients are responsible for invoking this method in the EDT.
- Parameters:
c
- the given cell renderer component.- Returns:
- the value of the given
Component
, ornull
if the renderer belongs to an unknown component type.
-