Package controller

Examples of controller.EstagioController


        elementosDaTabela.addElement("Código");
        elementosDaTabela.addElement("Empresa");
        elementosDaTabela.addElement("Estagiário");
        elementosDaTabela.addElement("Inicio");
        elementosDaTabela.addElement("Duração");
        EstagioController estagioCtrl = new EstagioController();
        DefaultTableModel modeloTabela = new DefaultTableModel(elementosDaTabela, 0);
        modeloTabela = estagioCtrl.getTableEstagios(modeloTabela);
        jTable1.setModel(modeloTabela);
    }
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();
        EstagioController estagioCtrl = new EstagioController();
        int linhaSelecionada = jTable1.getSelectedRow();
        String codigo = String.valueOf(jTable1.getValueAt(linhaSelecionada, 0));
        Estagio estagio = estagioCtrl.getEstagio(codigo);
        jTextFieldCodigoEstagio.setText(String.valueOf(estagio.getCodigoEstagio()));
        jTextFieldCodigoEmpresa.setText(String.valueOf(estagio.getEmpresa().getCodigoEmpresa()));
        jTextFieldRazao.setText(estagio.getEmpresa().getNome());
        jTextFieldNome.setText(estagio.getEstagiario().getNome());
        jTextFieldCodigoAluno.setText(String.valueOf(estagio.getEstagiario().getCodigoEstagiario()));
View Full Code Here

    habilitaBotoes(ativaBotoes, true);

    JButton[] desativaBotoes = {btnFechar, btnEditar, btnExcluir, btnNovo};
    habilitaBotoes(desativaBotoes, false);
   
    EstagioController estagioCtrl = new EstagioController();
    jTextFieldCodigoEstagio.setText(estagioCtrl.getNovoCodigo());
    habilitaCampos(true);
    jTable1.setEnabled(false);
   
    modo = Modo.Inclusao;
}//GEN-LAST:event_btnNovoActionPerformed
View Full Code Here

    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) {
        boolean excluiu = false;
       
        EstagioController estagioCtrl = new EstagioController();
        excluiu = estagioCtrl.excluir(codigoSelecionado);
       
        EstagiarioController estagiarioCtrl = new EstagiarioController();
        excluiu = estagiarioCtrl.finalizarEstagio(jTextFieldCodigoAluno.getText());
       
        if (excluiu) {
View Full Code Here

        estagio.setTempo(jComboBoxTempo.getSelectedItem().toString());
        estagio.setTermino(jTextFieldTermino.getText());
        estagio.setEstagiario(estagiario);
        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};
            habilitaBotoes(desativaBotoes, false);
View Full Code Here

TOP

Related Classes of controller.EstagioController

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.