Package Vista

Examples of Vista.MaterialLeerApunte


        int indice = jTableArticulos.getSelectedRow();
        if (indice > -1) {
            Integer i = Integer.parseInt(jTableArticulos.getValueAt(indice, 0).toString());
            Articulo a = mapaArticulos.get(i);
            try {
                MaterialLeerApunte materialApunte = new MaterialLeerApunte((Apunte) a);
                materialApunte.setVisible(true);
            } catch (Exception e) {
            }
            try {
                MaterialLeerCD materialCd = new MaterialLeerCD((Cd) a);
                materialCd.setVisible(true);
View Full Code Here

TOP

Related Classes of Vista.MaterialLeerApunte

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.