* @throws ExceptionDAO
*/
public ControllerViewPathologyByPatient(JXTable table, Patient patient, boolean editing) throws ExceptionDAO {
super(table, patient, editing);
this.entityList = new ArrayList(this.patient.getPathologiesPatient());
this.tableModel = new PathologiesByPatientTableModel(this.entityList);
this.table.setModel(this.tableModel);
this.controllerEntityEdition = new ControllerEditionPathologyByPatient(patient);
}