Package entidades

Examples of entidades.Pabellon


    }
   
    private void cargarCombo(){
        List<Pabellon> lista = ec.createQuery("select p from Pabellon p", Pabellon.class).getResultList();
        for (int i = 0; i < lista.size(); i++) {
            Pabellon pabellon = lista.get(i);
            comboBox.addItem(pabellon.getCodigo()+" - "+ pabellon.getDescripcion());
        }
    }
View Full Code Here

TOP

Related Classes of entidades.Pabellon

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.