* @throws ExceptionDAO
*/
public ControllerViewClinicalInfoByPatient(JXTable table, Patient patient, boolean editing) {
super(table, patient, editing);
this.entityList = this.entityList = new ArrayList(this.patient.getClinicalInformation());
this.tableModel = new ClinicalInfoTableModel(this.entityList);
this.table.setModel(this.tableModel);
this.controllerEntityEdition = new ControllerEditionClinicalInfoByPatient(patient);
}