Package calendar.domino

Examples of calendar.domino.PlanEdtudio


    private void jButtonAceptarActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonAceptarActionPerformed
        ArrayList lista = new  ArrayList();
        lista.add(jTextFieldNombre);
        lista.add(jTextFieldRegimen);
        if (CompareValidator.isSomeEmpty(lista)){
            PlanEdtudio plan = new PlanEdtudio();
            plan.setNombre(jTextFieldNombre.getText());
            plan.setRegimen(jTextFieldRegimen.getText());
            Dao daoPlan = new Dao(plan);
            daoPlan.insert(plan);
            CompareValidator.restoreAll(lista);
        }else {
             JOptionPane.showMessageDialog(this,"Compruebe los campos", "Error!!", JOptionPane.ERROR_MESSAGE);
View Full Code Here


        super(parent, modal);
        initComponents();
        inicio();
    }
    private void inicio(){
        Dao planDao = new Dao (new PlanEdtudio());
        listaPlan= planDao.getAll();
        for (Iterator<PlanEdtudio> it = listaPlan.iterator(); it.hasNext();) {
            jComboBoxPlan.addItem(it.next());
        }
    }
View Full Code Here

TOP

Related Classes of calendar.domino.PlanEdtudio

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.