Exemplo n.º 1
0
 /**
  * Deletes the selected unit from the list and updates the list.
  *
  * @param index unit to be deleted.
  */
 public void deleteDVD(int index) {
   DVD unit = listDVDs.get(index);
   listDVDs.remove(index);
   fireIntervalRemoved(unit, 0, listDVDs.size());
 }