Multivalent API

multivalent.gui
Class VRadiogroup

java.lang.Object
  extended by multivalent.gui.VRadiogroup

public class VRadiogroup
extends java.lang.Object

Used by VRadiobox to keep track of which in group is selected. x@deprecated - key on some attribute instead, which button queries to see if active, so can share with new behaviors

Version:
$Revision$ $Date$

Constructor Summary
VRadiogroup()
           
 
Method Summary
 void addObserver(VRadiobox r)
          Add radiobox to group.
 void clear()
           
 void deleteObserver(VRadiobox r)
          Remove radiobox from group.
 VRadiobox getActive()
          Return active radiobox.
 java.util.List<VRadiobox> getGroup()
           
 void setActive(VRadiobox r)
          Set the passed radiobox to be the active one in the group, automatically unselecting the old active.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

VRadiogroup

public VRadiogroup()
Method Detail

getActive

public VRadiobox getActive()
Return active radiobox.


setActive

public void setActive(VRadiobox r)
Set the passed radiobox to be the active one in the group, automatically unselecting the old active.


getGroup

public java.util.List<VRadiobox> getGroup()

addObserver

public void addObserver(VRadiobox r)
Add radiobox to group.


deleteObserver

public void deleteObserver(VRadiobox r)
Remove radiobox from group.


clear

public void clear()

Multivalent API