Class TableCellByColumnId

java.lang.Object
org.fest.swing.data.TableCellByColumnId
All Implemented Interfaces:
TableCellFinder

public class TableCellByColumnId extends Object implements TableCellFinder
Understands lookup of a cell in a JTable by column identifier.

Example:

 // import static org.fest.swing.data.TableCellByColumnId.row;
 TableCell cell = dialog.table("records").cell(row(3).columnId("firstColumn"));
 

  • Field Details

    • row

      public final int row
    • columnId

      public final Object columnId
  • Constructor Details

    • TableCellByColumnId

      protected TableCellByColumnId(int row, Object columnId)
  • Method Details