Package com.zinep.trans

Examples of com.zinep.trans.Transaccion


        List<Sucursal> sucursales = null;
        List<Cuenta> cuentas = null;

        Simulacion sim = null;
        Simulacion.LlegadaCliente llegada = null;
        Transaccion trn = null;
        TrnParser trnParser = new TrnParser();

        for (int i = 0; i < lineas.size(); i++) {
            String linea = lineas.get(i);
View Full Code Here


        if (!m.find()) {
            return null;
        }
        String id = m.group(1);

        Transaccion trn = null;
        if (id.equals("Retiro")) {
            if ((m = RETIRO.matcher(linea)).find()) {
                Moneda moneda = Moneda.valueOf(m.group(1));
                Cuenta cuenta = cliente.getCuenta(moneda);
                Monto monto = new Monto(Long.parseLong(m.group(2)), Moneda.valueOf(m.group(3)));
View Full Code Here

TOP

Related Classes of com.zinep.trans.Transaccion

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.