Package org.fest.swing.fixture
Interface EditableComponentFixture
- All Known Subinterfaces:
TextInputFixture
- All Known Implementing Classes:
JComboBoxFixture
,JTextComponentFixture
public interface EditableComponentFixture
Understands state verification of an editable GUI component.
-
Method Summary
Modifier and TypeMethodDescriptionAsserts that the GUI component is editable.Asserts that the GUI component is not editable.
-
Method Details
-
requireEditable
EditableComponentFixture requireEditable()Asserts that the GUI component is editable.- Returns:
- this fixture.
- Throws:
AssertionError
- if the GUI component is not editable.
-
requireNotEditable
EditableComponentFixture requireNotEditable()Asserts that the GUI component is not editable.- Returns:
- this fixture.
- Throws:
AssertionError
- if the GUI component is editable.
-