Uses of Class
org.apache.pivot.wtk.ButtonGroup

Packages that use ButtonGroup
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. 
 

Uses of ButtonGroup in org.apache.pivot.wtk
 

Subclasses of ButtonGroup in org.apache.pivot.wtk
 class RadioButtonGroup
          Extension of ButtonGroup providing keyboard navigation within the group and modified focus navigation that treats the group as a single focusable entity.
 

Methods in org.apache.pivot.wtk that return ButtonGroup
 ButtonGroup Button.getButtonGroup()
          Returns the button's button group.
 

Methods in org.apache.pivot.wtk with parameters of type ButtonGroup
 void ButtonGroupListener.buttonAdded(ButtonGroup buttonGroup, Button button)
          Called when a button has been added to a button group.
 void ButtonGroupListener.Adapter.buttonAdded(ButtonGroup buttonGroup, Button button)
           
 void ButtonListener.buttonGroupChanged(Button button, ButtonGroup previousButtonGroup)
          Called when a button's button group has changed.
 void ButtonListener.Adapter.buttonGroupChanged(Button button, ButtonGroup previousButtonGroup)
           
 void ButtonGroupListener.buttonRemoved(ButtonGroup buttonGroup, Button button)
          Called when a button has been removed from a button group.
 void ButtonGroupListener.Adapter.buttonRemoved(ButtonGroup buttonGroup, Button button)
           
 void ButtonGroupListener.selectionChanged(ButtonGroup buttonGroup, Button previousSelection)
          Called when a button group's selection has changed.
 void ButtonGroupListener.Adapter.selectionChanged(ButtonGroup buttonGroup, Button previousSelection)
           
 void Checkbox.setButtonGroup(ButtonGroup buttonGroup)
           
 void Button.setButtonGroup(ButtonGroup buttonGroup)
          Sets the button's button group.
 

Constructors in org.apache.pivot.wtk with parameters of type ButtonGroup
RadioButton(ButtonGroup buttonGroup)
           
RadioButton(ButtonGroup buttonGroup, Object buttonData)
           
 

Uses of ButtonGroup in org.apache.pivot.wtk.skin
 

Methods in org.apache.pivot.wtk.skin with parameters of type ButtonGroup
 void ButtonSkin.buttonGroupChanged(Button button, ButtonGroup previousButtonGroup)