Package controller

Examples of controller.AlunoController


        estagio.setEmpresa(empresa);

        EstagioController estagioCtrl = new EstagioController();
        if (modo.equals(Modo.Inclusao)) {
            salvou = estagioCtrl.salvar(estagio);
            AlunoController alunoCtrl = new AlunoController();
            alunoCtrl.relacionarEstagio(jTextFieldCodigoAluno.getText());
        } else {
            salvou = estagioCtrl.atualizar(estagio);
        }
        if (salvou) {
            JButton[] desativaBotoes = {btnSalvar, btnCancelar, btnEditar, jButtonPesquisaEmpresa, jButtonPesquisaAluno};
View Full Code Here


            jTable1.setModel(modeloTabela);
        }else
        if(tipo.equals("aluno")){
            pesquisa = pesquisa.Aluno;
            jLabelTitulo.setText("Pesquisa por Alunos - Clique em um item para selecionar");
            AlunoController alunoCtrl = new AlunoController();

            elementosDaTabela.addElement("Código");
            elementosDaTabela.addElement("Empresa");
            elementosDaTabela.addElement("Estagiário");       
            elementosDaTabela.addElement("Inicio");               
            elementosDaTabela.addElement("Duração");                                                                                            
            DefaultTableModel modeloTabela = new DefaultTableModel(elementosDaTabela,0);
            modeloTabela = alunoCtrl.getTableAlunos(modeloTabela);
            jTable1.setModel(modeloTabela);
        }else
        if(tipo.equals("empresa")){
            pesquisa = pesquisa.Empresa;
            jLabelTitulo.setText("Pesquisa por Empresas - Clique em um item para selecionar");
View Full Code Here

        elementosDaTabela.addElement("Código");
        elementosDaTabela.addElement("Nome");
        elementosDaTabela.addElement("E-mail");       
        elementosDaTabela.addElement("Telefone");               
        elementosDaTabela.addElement("Celular");                                     
        AlunoController alunoCtrl= new AlunoController();                      
        DefaultTableModel modeloTabela = new DefaultTableModel(elementosDaTabela,0);
        modeloTabela = alunoCtrl.getTableAlunos(modeloTabela);
        jTable1.setModel(modeloTabela);
    }   
View Full Code Here

    habilitaBotoes(ativaBotoes, true);

    JButton[] desativaBotoes = {btnFechar, btnEditar, btnExcluir, btnNovo};
    habilitaBotoes(desativaBotoes, false);

    AlunoController alunoCtrl = new AlunoController();
    jTextFieldCodigoAluno.setText(alunoCtrl.getNovoCodigo());
   
    habilitaCampos(true);
    jTable1.setEnabled(false);
   
    modo = Modo.Inclusao;
View Full Code Here

        aluno.setCpf(jTextFieldCPF.getText());
        aluno.setNascimento(jTextFieldNascimento.getText());
        aluno.setObservacao(jTextAreaObservacao.getText());
        aluno.setEndereco(endereco);
       
        AlunoController alunoController = new AlunoController();
       
        if (modo.equals(Modo.Inclusao)){
            salvou = alunoController.salvar(aluno);
        }else{
            salvou = alunoController.atualizar(aluno);
        }      
       
        if(salvou){
            JButton[] desativaBotoes = {btnSalvar, btnCancelar, btnEditar};
            habilitaBotoes(desativaBotoes, false);
View Full Code Here

    modo = Modo.Edicao;
}//GEN-LAST:event_btnEditarActionPerformed

private void btnExcluirActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnExcluirActionPerformed
// TODO add your handling code here:
    AlunoController alunoCtrl = new AlunoController();
    String codigoSelecionado = jTextFieldCodigoAluno.getText();
    Object[] opcoes = {"Sim", "Não"};
    int confirma = JOptionPane.showOptionDialog(null, Strings.confirmaExcluir, Strings.tituloExcluir, JOptionPane.DEFAULT_OPTION, JOptionPane.WARNING_MESSAGE, null, opcoes, opcoes[0]);
    if (confirma == 0) {
        if (alunoCtrl.excluir(codigoSelecionado)) {
            JOptionPane.showMessageDialog(this, Strings.operacaoSucesso);
            carregaTabela();
        } else {
            JOptionPane.showMessageDialog(this, Strings.operacaoFracasso, Strings.tituloMessage, JOptionPane.ERROR_MESSAGE);
        }
View Full Code Here

private void jTable1MouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jTable1MouseClicked
// TODO add your handling code here:
    if(modo.equals(Modo.Navegacao)){
        limpaCampos();
        AlunoController alunoCtrl = new AlunoController();
        int linhaSelecionada = jTable1.getSelectedRow();
        String codigo = String.valueOf(jTable1.getValueAt(linhaSelecionada, 0));
        Aluno aluno = alunoCtrl.getAluno(codigo);
        jTextFieldCodigoAluno.setText(String.valueOf(aluno.getCodigoPessoa()));
        jTextFieldNome.setText(aluno.getNome());
        jTextFieldEmail.setText(aluno.getEmail());
        jTextFieldRG.setText(aluno.getRg());
        jTextFieldCelular.setText(aluno.getCelular());
View Full Code Here

TOP

Related Classes of controller.AlunoController

Copyright © 2018 www.massapicom. 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.