CheckboxPeer is an interface that defines the basis for checkbox components.
public abstract interface java.awt.peer.CheckboxPeer extends java.awt.peer.ComponentPeer { // Interface Methods public abstract void setCheckboxGroup (CheckboxGroup group); public abstract void setLabel (String label); public abstract void setState (boolean state); }
New group to put the checkbox peer in.
Changes the checkbox group to which the checkbox peer belongs; implicitly removes the peer from its old group, if any.
New text for label of checkbox's peer.
Changes the text of the label of the checkbox's peer.
New state for the checkbox's peer.
Changes the state of the checkbox's peer.
CheckboxGroup, ComponentPeer, String