Package com.zinep

Examples of com.zinep.Agente


    public Virtual(String nombre, Monto montoDisponibleUYU, Monto montoDisponibleUSD) {
        this(nombre, new ArrayList<Agente>(), montoDisponibleUYU, montoDisponibleUSD);

        for (int i = 0; i < 50; i++) {
            Agente agente = new Pagina();
            agentes.add(agente);
            agente.setCola(cola);
        }

        for (Agente agente : agentes) {
            agente.setSucursal(this);
        }
    }
View Full Code Here

TOP

Related Classes of com.zinep.Agente

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.