Package systole.view.crud.tableModels

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

Related Classes of systole.view.crud.tableModels.MedicinesByPatienteTableModel

Copyright © 2018 www.massapicom. 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.