Package entidades

Examples of entidades.TipoEstadoPreso


            } catch (NoResultException ex) {

            }
        }
       
        estadoAnterior = new TipoEstadoPreso(Integer.valueOf(ComboEstado.getSelectedItem().toString().split(" - ")[0]), ComboEstado.getSelectedItem().toString().split(" - ")[1], null);
        setVisible(true);
        addButonHandler();
       
       
    }
View Full Code Here


    private void cargarCombo () {
       
        lista = ec.createQuery("select t from TipoEstadoPreso t order by t.codigo", TipoEstadoPreso.class).getResultList();
        if (!lista.isEmpty()){
            for (int i = 0; i < lista.size(); i++) {
                TipoEstadoPreso EstadoPreso = lista.get(i);
               
                ComboEstado.addItem(String.valueOf(EstadoPreso.getCodigo())+" - "+ EstadoPreso.getDescripcion());
            }
        }
    }
View Full Code Here

                    //Preso presoaux = new Preso();
                    id = ComboEstado.getSelectedItem().toString().split(" - ")[0];
                   
                   
                   
                    TipoEstadoPreso tipoestado = new TipoEstadoPreso();
                    tipoestado.setCodigo(Integer.valueOf(id));
                    tipoestado.setDescripcion(ComboEstado.getSelectedItem().toString().split(" - ")[1]);
                    EstadoPreso estado = new EstadoPreso();
                    estado.setFecha();
                    estado.setEstadoPreso(tipoestado) ;
                    //transaccion.add(estado);
                  
View Full Code Here

                            if (motivo.getPreso().getNropreso() == condena.getPreso().getNropreso()) {
                                motivo.setCondena(condena);
                                ec.updateEntity(motivo, false);
                            }
                        }
                        TipoEstadoPreso tep = (TipoEstadoPreso) ec.createQuery("select t from TipoEstadoPreso t where t.descripcion = 'Condenado'", TipoEstadoPreso.class).getSingleResult();
                        EstadoPreso estPre = new EstadoPreso(p, tep, new Timestamp(new Date().getTime()));
                        ec.persist(estPre,commit);
                       
                        listener.onPanelClose();
                    }
View Full Code Here

TOP

Related Classes of entidades.TipoEstadoPreso

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.