- java.lang.Object
-
- io.github.mmm.ui.test.TestToggleGroup
-
- All Implemented Interfaces:
UiToggleGroup
public class TestToggleGroup extends Object implements UiToggleGroup
Implementation ofUiToggleGroupfor testing.- Since:
- 1.0.0
-
-
Constructor Summary
Constructors Constructor Description TestToggleGroup()The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(TestAbstractRadioButton radioButton)Set<TestAbstractRadioButton>getGroup()voidremove(TestAbstractRadioButton radioButton)voidupdate(TestAbstractRadioButton radioButton)
-
-
-
Method Detail
-
getGroup
public Set<TestAbstractRadioButton> getGroup()
- Specified by:
getGroupin interfaceUiToggleGroup- Returns:
- the native toggle group from the underlying toolkit.
-
add
public void add(TestAbstractRadioButton radioButton)
- Parameters:
radioButton- theTestAbstractRadioButtonto add.
-
remove
public void remove(TestAbstractRadioButton radioButton)
- Parameters:
radioButton- theTestAbstractRadioButtonto remove.
-
update
public void update(TestAbstractRadioButton radioButton)
- Parameters:
radioButton- theTestAbstractRadioButtonthat has just updated itsselected flag.
-
-