Package Vista

Examples of Vista.MaterialLeer


        }
    }

    public void ventanaLeer(LinkedHashMap<Integer, Articulo> mapaArticulos) {
        if (mapaArticulos.size() > 0) {
            MaterialLeer materialLeer = new MaterialLeer(mapaArticulos);
            materialLeer.setVisible(true);
        } else {
            JOptionPane.showMessageDialog(null, "No se pueden leer articulos porque no existen articulos.");
        }
    }
View Full Code Here

TOP

Related Classes of Vista.MaterialLeer

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.