* @throws ExceptionDAO
*/
public ControllerViewFamilyBackground(JXTable table, Patient patient, boolean editing) {
super(table, patient, editing);
this.entityList = new ArrayList(this.patient.getFamilyPatientBackgrounds());
this.tableModel = new FamilyBackgroundTableModel(this.entityList);
this.table.setModel(this.tableModel);
this.controllerEntityEdition = new ControllerEditionFamilyBackground(patient);
}