Package Vista

Examples of Vista.MaterialModificarApunte


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

TOP

Related Classes of Vista.MaterialModificarApunte

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.