Package calendar.domino

Examples of calendar.domino.Carreras


    private void jButtonAceptarActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonAceptarActionPerformed
        ArrayList lista = new ArrayList();
        lista.add(jTextFieldNombre);
        lista.add(jTextFieldCantidad);
        if (CompareValidator.isSomeEmpty(lista)){
            Carreras carreras = new Carreras();
            carreras.setNombre(jTextFieldNombre.getText());
            carreras.setPlanEdtudios((Set<PlanEdtudio>) jComboBoxPlan.getSelectedItem());
            carreras.setDuracion(Integer.parseInt(jTextFieldCantidad.getText()));
            Dao daoCarrera = new Dao(carreras);
            daoCarrera.insert(carreras);
            CompareValidator.restoreAll(lista);
        } else{
            JOptionPane.showMessageDialog(this,"Compruebe los campos", "Error!!", JOptionPane.ERROR_MESSAGE);
View Full Code Here

TOP

Related Classes of calendar.domino.Carreras

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.