if (form == null) {
return;
}
for (Iterator iter = form.getAllControls(getName()).iterator(); iter
.hasNext();) {
FormControl control = (FormControl) iter.next();
if (control instanceof CheckControl) {
CheckControl check = (CheckControl) control;
if (check.isRadio() && check != this) {
check.setSuccessful(false);
}