Package hsv.DAO

Examples of hsv.DAO.ComputadorDAO.editar()


   
    public void editarComputador() {
        try {
            ComputadorDAO dao = new ComputadorDAO();
            dao.editar(computador1);
            FacesContext.getCurrentInstance().addMessage(null, new FacesMessage("Dados Alterados com Sucesso!"));
        } catch (Exception e) {
            FacesContext.getCurrentInstance().addMessage(null, new FacesMessage(FacesMessage.SEVERITY_ERROR, "Não foi possível editar o registro!", ""));
        }
    }
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.