Package controller

Examples of controller.AulaAvaliativaController.reprocessar()


    if(!modo.equals(Modo.Navegacao)){
        Object[] opcoes = {"Sim", "Não"};
        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();
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.