Package com.GestDB.swing

Examples of com.GestDB.swing.EnterSingleData


                    try {
                        Gestor.CargarLibrerias(this.getClass());
                        CargaLista();
                       
                        // si es un skin tenemos que pedirle el nombre de la clase principal y actualizarlo en la lista de skins
                        EnterSingleData edata = new EnterSingleData(new javax.swing.JFrame(),true,
                            Gestor.GetLiteral("addlibrary.enter_class","Introduzca la clase java principal, esta le viene indicada en la documentaci�n de la libreria"),
                            Gestor.GetLiteral("addlibrary.class","Clase"));
                        edata.setVisible(true);
                       
                        if(edata.getReturnStatus() == edata.RET_OK)
                        {
                            String clase = edata.jTextField1.getText();
                           
                            edata = new EnterSingleData(new javax.swing.JFrame(),true,
                                Gestor.GetLiteral("addlibrary.enter_skinname","Introduzca el nombre de la piel"),
                                Gestor.GetLiteral("dlgconfig.skin","Piel"));
                            edata.setVisible(true);
                            if(edata.getReturnStatus() == edata.RET_OK)
                            {
                                Gestor.skins.saveSkin(edata.jTextField1.getText(),clase);
                                // tenemos que actualizar la ventana de configuraci�n
                                conf.CargaSkins();
                            }
View Full Code Here

TOP

Related Classes of com.GestDB.swing.EnterSingleData

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.