Examples of LugarEntrega


Examples of modelo.utilidades.LugarEntrega

        this.modeloTablaPaquetesPorEntregar.eliminarPaquete(this.filaSeleccionada);
    }//GEN-LAST:event_jMenuItem20ActionPerformed
    public void buscarAutomaticamente() {
        //Primero obtenemos las localidades de inicio y destino
        try {
            LugarEntrega lugarEntrega = (LugarEntrega) jComboBoxBarrios.getSelectedItem();
            this.simulacionAutomatica = new SimulacionAutomatica(this.rutaOptimaText,this.jTabbedPaneModoEjecucion, this, lugarEntrega, textoRecorrido, modeloTablaPaquetesPorEntregar, modeloTablaPaquetesEntregados, mapaDatos, pizarraAnimacion, busqueda, modeloCombo2);
            this.simulacionAutomatica.setTiempoPausa(Integer.parseInt(this.contadorSpiner.getValue().toString()));
            this.simulacionAutomatica.start();
        } catch (Exception e) {
            JOptionPane.showMessageDialog(this, "Revise por favor la lista de paquetes", "ERROR", JOptionPane.ERROR_MESSAGE);
View Full Code Here

Examples of modelo.utilidades.LugarEntrega

        this.localidades.add(localidad);
    }
    public ArrayList<LugarEntrega> getLugaresEntrega(){
        ArrayList<LugarEntrega> lugaresEntrega = new ArrayList<LugarEntrega>();
        for (Localidad localidad : this.localidades) {
            lugaresEntrega.add(new LugarEntrega(localidad.getBarrio().getId(), localidad.getBarrio().getDenominacion()));
        }
        return lugaresEntrega;
    }
View Full Code Here

Examples of modelo.utilidades.LugarEntrega

                this.pizarraAnimacion.setEstadoRutaOptima(true);
                this.pizarraAnimacion.repaint();

                this.modeloTablaPaquetesEntregados.addPaquetes(paqueteEntrega);
                this.modeloTablaPaquetesPorEntregar.eliminarPaquete(0);
                LugarEntrega lugarEntregaPasado = new LugarEntrega(paqueteEntrega.getPunto(), paqueteEntrega.getNombreBarrio());
                this.modeloCombo2.addElement(lugarEntregaPasado);
                contadorEntregas++;
                try {
                    sleep(tiempoPausa * 1000);
                } catch (InterruptedException ex) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.