Package modelo.utilidades

Examples of modelo.utilidades.ModeloComboBox


        }
        configurarCabecera();
        this.mapaDatos = new Mapa(1, "Mapa Loja", new Mapeo().mapearLocalidades());
        this.cargarAnimacion();

        this.modeloCombo1 = new ModeloComboBox(this.mapaDatos.getLugaresEntrega());
        this.jComboBoxBarrios.setModel(modeloCombo1);
        this.modeloCombo2 = new ModeloComboBox(this.mapaDatos.getLugaresEntrega());
        this.paquetesPorEntregar = new ArrayList<PaqueteEntrega>();
        this.paquetesEntregados = new ArrayList<PaqueteEntrega>();

        modeloTablaPaquetesEntregados = new ModeloTablaPaquete(paquetesEntregados);
        modeloTablaPaquetesPorEntregar = new ModeloTablaPaquete(paquetesPorEntregar);
View Full Code Here

TOP

Related Classes of modelo.utilidades.ModeloComboBox

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.