Package Entity

Examples of Entity.Ciudad


    // <editor-fold defaultstate="collapsed" desc=" UML Marker ">
    // #[regen=yes,id=DCE.8B558A28-0057-DD1A-D95B-A8448A559DE1]
    // </editor-fold>
    public String premiosDispd(int x, int y, int can, String b,String ciudad) {
        Ciudad Provisional= citydao.leer(ciudad);
        if (Provisional==null){
            return "Ciudad no valida";
        }
        if (b.equals(Provisional.getEstaciones().get(y).getPremios().get(1).getNombre())) {
            if (Provisional.getEstaciones().get(y).getPremios().get(1).getCantidad() >= can) {
                return "Continue";
            } else {
                return "La cantidad ingresada no esta disponible";
            }
        } else if (b.equals(Provisional.getEstaciones().get(y).getPremios().get(2).getNombre())) {
            if (Provisional.getEstaciones().get(y).getPremios().get(2).getCantidad() >= can) {
                return "Continue";
            } else {
                return "La cantidad ingresada no esta disponible";
            }
        } else if (b.equals(Provisional.getEstaciones().get(y).getPremios().get(0).getNombre())) {
            if (Provisional.getEstaciones().get(y).getPremios().get(0).getCantidad() >= can) {
                return "Continue";
            } else {
                return "La cantidad ingresada no esta disponible";
            }
        } else if (b.equals(Provisional.getEstaciones().get(y).getPremios().get(4).getNombre())) {
            if (Provisional.getEstaciones().get(y).getPremios().get(4).getCantidad() >= can) {
                return "Continue";
            } else {
                return "La cantidad ingresada no esta disponible";
            }
        } else if (b.equals(Provisional.getEstaciones().get(y).getPremios().get(3).getNombre())) {
            if (Provisional.getEstaciones().get(y).getPremios().get(3).getCantidad() >= can) {
                return "Continue";
            } else {
                return "La cantidad ingresada no esta disponible";
            }
        } else if (b.equals(Provisional.getEstaciones().get(y).getPremios().get(5).getNombre())) {
            if (Provisional.getEstaciones().get(y).getPremios().get(5).getCantidad() >= can) {
                return "Continue";
            } else {
                return "La cantidad ingresada no esta disponible";
            }
        } else if (b.equals(Provisional.getEstaciones().get(y).getPremios().get(9).getNombre()) || b.equals(Provisional.getEstaciones().get(y).getPremios().get(8).getNombre()) || b.equals(Provisional.getEstaciones().get(y).getPremios().get(7).getNombre()) || b.equals(Provisional.getEstaciones().get(y).getPremios().get(6).getNombre())) {
            return "Continue";
        }
        return "La cantidad ingresada no esta disponible";

    }
View Full Code Here


        bog6.setNomb_estacion("Texaco 41");
        bog6.setSigla("Tx41");
        listapremios6 = hacerlista(55, 77, 86, 49, 85, 96, true, true, true, true, true, true, false, false, false, false);
        bog6.setPremios((ArrayList<Premios>) listapremios6);
        listaestacionesbogota.add(bog6);
        Ciudad Bogota = new Ciudad();

        Bogota.setNombrecity("Bogota");
        Bogota.setNumestaciones(6);
        Bogota.setEstaciones((ArrayList<Estaciones>) listaestacionesbogota);
        Bogota.setId((long) 1);
        listaciudad.add(Bogota);

        Estaciones cal1 = new Estaciones();
        cal1.setDireccion("Av casañasgordas No 22-00");
        cal1.setNomb_estacion("Texaco 34");
        cal1.setSigla("Tx34");
        listapremios7 = hacerlista(31, 26, 44, 97, 87, 58, true, true, true, true, true, true, true, true, true, true);
        cal1.setPremios((ArrayList<Premios>) listapremios7);
        listaestacionescali.add(cal1);
        Estaciones cal2 = new Estaciones();
        cal2.setDireccion("Calle 5 No 55-00");
        cal2.setNomb_estacion("Texaco 10");
        cal2.setSigla("Tx10");
        listapremios8 = hacerlista(15, 97, 20, 25, 54, 94, true, true, true, true, true, true, false, false, false, false);
        cal2.setPremios((ArrayList<Premios>) listapremios8);
        listaestacionescali.add(cal2);
        Estaciones cal3 = new Estaciones();
        cal3.setDireccion("Av Roosevelt No 31-00");
        cal3.setNomb_estacion("Texaco 03");
        cal3.setSigla("Tx3");
        listapremios9 = hacerlista(85, 17, 70, 27, 31, 53, true, true, true, true, true, true, false, false, false, false);
        cal3.setPremios((ArrayList<Premios>) listapremios9);
        listaestacionescali.add(cal3);
        Estaciones cal4 = new Estaciones();
        cal4.setDireccion("Calle 5 No 25-20");
        cal4.setNomb_estacion("Texaco 25");
        cal4.setSigla("Tx25");
        listapremios10 = hacerlista(0, 52, 63, 72, 23, 25, false, true, true, true, true, true, true, true, true, true);
        cal4.setPremios((ArrayList<Premios>) listapremios10);
        listaestacionescali.add(cal4);
        Ciudad Cali = new Ciudad();

        Cali.setNombrecity("Cali");
        Cali.setNumestaciones(4);
        Cali.setEstaciones((ArrayList<Estaciones>) listaestacionescali);
        Cali.setId((long) 2);
        listaciudad.add(Cali);
        Usuario user = new Usuario();
        user.setNombre("Carlos Alberto ");
        user.setApellidos("Perez Ruiz");
        user.setCodigo(1L);
View Full Code Here

    }

    public Ciudad leer(String nombre) {
        EntityManager em = emf.createEntityManager();
        em.getTransaction().begin();
        Ciudad ciudad = null;
        Query cons = em.createQuery("SELECT c FROM Ciudad c WHERE c.nombrecity " +
                "like :ciudad").setParameter("ciudad", nombre);
        try {
            ciudad = (Ciudad) cons.getSingleResult();
        } catch (Exception e) {
View Full Code Here

TOP

Related Classes of Entity.Ciudad

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.