Supports functional testing of {@code JScrollPane}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.
56575859606162
super(JScrollPaneFixture.class, robot, panelName, JScrollPane.class); } @Override protected @Nonnull JScrollPaneDriver createDriver(@Nonnull Robot robot) { return new JScrollPaneDriver(robot); }
76777879808182
super(robot, panelName, JScrollPane.class); driver = newComponentDriver(); } private JScrollPaneDriver newComponentDriver() { return new JScrollPaneDriver(robot); }