Examples of MedicinesByPatienteTableModel


Examples of systole.view.crud.tableModels.MedicinesByPatienteTableModel

     * @throws ExceptionDAO
     */
    public ControllerViewMedicineByPatient(JXTable table, Patient patient, boolean editing) throws ExceptionDAO {
        super(table, patient, editing);
        this.entityList = this.entityList = new ArrayList(this.patient.getMedicinesPatient());
        this.tableModel = new MedicinesByPatienteTableModel(this.entityList);
        this.table.setModel(this.tableModel);
        this.controllerEntityEdition = new ControllerEditionMedicineByPatient(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.