Package org.fest.swing.fixture
Class ComponentFixtureExtension<C extends Component,F extends ComponentFixture<C>>
java.lang.Object
org.fest.swing.fixture.ComponentFixtureExtension<C,F>
- Type Parameters:
C
- the type ofComponent
theComponentFixture
to create can handle.F
- the type ofComponentFixture
this extension can create.
public abstract class ComponentFixtureExtension<C extends Component,F extends ComponentFixture<C>>
extends Object
Understands an "extension method" for implementations of
ContainerFixture
. This extension
creates new ComponentFixture
s managing components inside a
ContainerFixture
's Container
.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract F
createFixture
(Robot robot, Container root) Creates a new
.ComponentFixture
-
Constructor Details
-
ComponentFixtureExtension
public ComponentFixtureExtension()
-
-
Method Details
-
createFixture
Creates a new
.ComponentFixture
- Parameters:
robot
- theRobot
to pass to the new fixture.root
- the container where the component to handle by the created fixture is contained.- Returns:
- the created
ComponentFixture
.
-