Examples of PathologiesByPatientTableModel


Examples of systole.view.crud.tableModels.PathologiesByPatientTableModel

     * @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);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.