Please see in this example how India, SA and England are in Checkboxgroup A and the rest in B. You can only select one team in a group (the other team becomes automatically unchecked).
import java.awt.*;
import java.awt.event.*;
/**
*
* @author root
*/
public class CheckBoxGroupDemo extends Frame {
public Checkbox india, srilanka, pakistan, southafrica, england;
public CheckboxGroup groupa, groupb;
public CheckboxListener listen;
public TextField message;
public FlowLayout lay;
public String msg;
public CheckBoxGroupDemo() {