Interface RadioButtonHandle
- All Superinterfaces:
FormComponentHandle
Handle for the "Single radio button" form component. The Swing widget is one
JRadioButton
in a group of single-radio form components sharing the same variable name.
Reach this handle via ScreenHandle.radioButton().
-
Method Summary
Modifier and TypeMethodDescriptionAssert that this radio button is not currently selected.Assert that this radio button is currently selected.booleanWhether this radio button is currently selected.select()Select this radio button.Methods inherited from interface FormComponentHandle
getId, isEnabled, isVisible
-
Method Details
-
isSelected
boolean isSelected()Whether this radio button is currently selected. -
select
Select this radio button. -
assertSelected
Assert that this radio button is currently selected. -
assertNotSelected
Assert that this radio button is not currently selected. -
assertEnabled
- Specified by:
assertEnabledin interfaceFormComponentHandle
-
assertDisabled
- Specified by:
assertDisabledin interfaceFormComponentHandle
-
assertVisible
- Specified by:
assertVisiblein interfaceFormComponentHandle
-
assertInvisible
- Specified by:
assertInvisiblein interfaceFormComponentHandle
-