/** DOCUMENT ME! */
  public void setCheckBoxesDisabled() {

    for (int i = 0; i < listLength; i++) {
      setEnabledList(i, false);
    }

    super.setCheckBoxesEnabled();
  }
 /**
  * sets the enabled status of the checkboxes, after first finding the visible ones (ie., setting
  * the visible status of them), by using the super-class' implementation of setCheckBoxesEnabled.
  *
  * @see #findVisible
  * @see JPanelChecklist#setCheckBoxesEnabled
  */
 public void setCheckBoxesEnabled() {
   findVisible();
   super.setCheckBoxesEnabled();
 }