Uses of Class
ch.aplu.android.GGRadioButton

Packages that use GGRadioButton
ch.aplu.android Package of the JDroidLib framework for developing Android applications with a focus on gaming and simulations. 
 

Uses of GGRadioButton in ch.aplu.android
 

Methods in ch.aplu.android that return GGRadioButton
 GGRadioButton GGRadioButtonGroup.getSelectedButton()
          Returns the currently selected button.
 

Methods in ch.aplu.android that return types with arguments of type GGRadioButton
 java.util.ArrayList<GGRadioButton> GGRadioButtonGroup.getButtons()
          Returns a list of all buttons added to the group.
 

Methods in ch.aplu.android with parameters of type GGRadioButton
 void GGRadioButtonGroup.add(GGRadioButton... radioButtons)
          Adds the given GGRadioButtons to the group.
 void GGRadioButtonGroup.add(GGRadioButton radioButton)
          Adds the given GGRadioButton to the group.
 void GGRadioButtonListener.buttonSelected(GGRadioButton radioButton, boolean selected)
          Event callback method called when the button changes the state.
 

Constructors in ch.aplu.android with parameters of type GGRadioButton
GGRadioButtonGroup(GGRadioButton... radioButtons)
          Creates a GGRadionButton instance that contains the given GGRadioButtons.