Package controller

Examples of controller.DocenteController.cancelarAprovacao()


        int confirma = JOptionPane.showOptionDialog(null, "Você está cancelando a aprovação deste Candidato." + Strings.confirmaProcesso, Strings.tituloProcesso, JOptionPane.DEFAULT_OPTION, JOptionPane.WARNING_MESSAGE, null, opcoes, opcoes[0]);
        if (confirma == 0) {
            AulaAvaliativaController aulaCtrl = new AulaAvaliativaController();
            reprocessou = aulaCtrl.reprocessar(jTextFieldCodigoAulaAvaliativa.getText());
            DocenteController docenteCtrl = new DocenteController();
            reprocessou = docenteCtrl.cancelarAprovacao(jTextFieldCodigoCandidato.getText());   
            if(reprocessou){
                jComboBoxResultado.setSelectedItem("Em Processo");       
                carregaTabela();
            }else{
                JOptionPane.showMessageDialog(null, "Reprocessar " + Strings.mensagemErroProcesso, Strings.tituloMessage, JOptionPane.INFORMATION_MESSAGE);
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.