Interface JListCellReader

All Known Implementing Classes:
BasicJListCellReader

@RunsInCurrentThread public interface JListCellReader
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

    Modifier and Type
    Method
    Description
    valueAt(JList list, int index)
    Returns the internal value of a cell in a JList as expected in a test.
  • Method Details

    • valueAt

      String valueAt(JList list, int index)
      Returns the internal value of a cell in a JList as expected in a test.

      Note: 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 given JList.
      index - the index of the cell.
      Returns:
      the internal value of a cell in a JList as expected in a test.