public class Checkbox extends Component implements ItemSelectable, Accessible A check box is a graphical component that can be in either an "on" (true) or "off" (false) state. Clicking on a check box changes its state from "on" to "off," or from "off" to "on."
Constructors
Checkbox() - no label. Checkbox(String label) - the specified label. Checkbox(String label, boolean state) + sets the specified state. Checkbox(String label, boolean state, CheckboxGroup group) Checkbox(String label, CheckboxGroup group, boolean state) + in the specified check box group.