Supports functional testing of {@code JTable}s.
Note: This class is intended for internal use only. Please use the classes in the package {@link org.fest.swing.fixture} in your tests.
82838485868788
super(JTableFixture.class, robot, tableName, JTable.class); } @Override protected @Nonnull JTableDriver createDriver(@Nonnull Robot robot) { return new JTableDriver(robot); }
90919293949596
super(robot, tableName, JTable.class); createDriver(); } private void createDriver() { driver(new JTableDriver(robot)); }