/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package systole.view.crud.conclusion;
import systole.exceptions.ExceptionDAO;
import systole.utils.ImageUtils;
import systole.view.crud.controller.ControllerEntityView;
import systole.view.crud.tableModels.ConclusionTableModel;
import systole.view.messages.EntityDescriptions;
import systole.view.utils.ErrorDialog;
/**
*
* @author jmj
*/
public class ControllerConclusionView extends ControllerEntityView {
/**
* @throws ExceptionDAO
*/
@SuppressWarnings("unchecked")
public ControllerConclusionView() throws ExceptionDAO {
super();
this.entityList = this.facadeDB.getConclusionBroker().getAllConclusions();
this.tableModel = new ConclusionTableModel(this.entityList);
this.entityName = EntityDescriptions.CONCLUSION;
this.pluralEntity =EntityDescriptions.CONCLUSIONS;
this.controllerEntityEdition = new ControllerConclusionEdition();
}
@Override
public void refreshList() {
try {
this.entityList = this.facadeDB.getConclusionBroker().getAllConclusions();
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/conclusion/conclusion16.png"));
this.entities.getJXEntityHeader().setIcon(ImageUtils.buildIcon("resources/icons/conclusion/conclusion32.png"));
}
}