cage.utility
Interface GenericButtonGroup

All Known Implementing Classes:
AbstractButtonGroup, Min1ButtonGroup, SyncButtonGroup

public interface GenericButtonGroup

An object implementing this interface represents a group of AbstractButtons.


Method Summary
 void add(javax.swing.AbstractButton button)
          Add button to this group.
 java.util.Enumeration getElements()
          Returns an enumeration of the buttons in this group.
 void remove(javax.swing.AbstractButton button)
          Remove button from this group and do nothing if it wasn't in this group.
 

Method Detail

add

void add(javax.swing.AbstractButton button)
Add button to this group.

Parameters:
button - The AbstractButton to add to this group.

remove

void remove(javax.swing.AbstractButton button)
Remove button from this group and do nothing if it wasn't in this group.

Parameters:
button - The AbstractButton to remove to this group.

getElements

java.util.Enumeration getElements()
Returns an enumeration of the buttons in this group.

Returns:
An enumeration of the buttons in this group.