Package systole.view.crud.pathology

Source Code of systole.view.crud.pathology.ControllerPathologyView

/**
*
*/
package systole.view.crud.pathology;

import systole.exceptions.ExceptionDAO;
import systole.utils.ImageUtils;
import systole.view.crud.controller.ControllerEntityView;
import systole.view.crud.tableModels.PathologiesTableModel;
import systole.view.messages.EntityDescriptions;
import systole.view.utils.ErrorDialog;

/**
* @author jmj
*
*/
public class ControllerPathologyView extends ControllerEntityView {

    /**
     * @throws ExceptionDAO
     */
    @SuppressWarnings("unchecked")
    public ControllerPathologyView() throws ExceptionDAO {
        super();
        this.entityList = this.facadeDB.getPathologyBroker().getAllPathologies();
        this.tableModel = new PathologiesTableModel(this.entityList);
        this.entityName = EntityDescriptions.PATHOLOGY;
        this.pluralEntity = EntityDescriptions.PATHOLOGIES;
        this.controllerEntityEdition = new ControllerPathologyEdition();
    }

    @Override
    public void refreshList() {
        try {
            this.entityList = this.facadeDB.getPathologyBroker().getAllPathologies();
            this.tableModel.refreshList(this.entityList);
            this.entities.getjTableEntities().setModel(this.tableModel);
        } catch (ExceptionDAO ex) {
            this.facadeDB.refreshSession();
           ErrorDialog.showError(this.entities,ex.getMessage());
        }
        this.entities.getjTableEntities().revalidate();
    }

    @Override
    protected boolean canDeleteEntity() {
        return false;
    }

    @Override
    protected void loadIconOnForm() {
        this.entities.setIconImage(ImageUtils.buildImage("resources/icons/medic/pathology16.png"));
        this.entities.getJXEntityHeader().setIcon(ImageUtils.buildIcon("resources/icons/medic/pathology32.png"));
    }
}
TOP

Related Classes of systole.view.crud.pathology.ControllerPathologyView

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.