Package vista

Examples of vista.MostrarCliente


              int option=JOptionPane.showConfirmDialog(null, "�Seguro que desea eliminar al cliente?");
                  if (option==JOptionPane.YES_OPTION)
                    halconController.DeleteClienteByClass(cliente);
            }
            else
              MostrarCliente m = new MostrarCliente(this.abmCliente, cliente);
              abmCliente.removeAll();
              abmCliente.add(m);
              }
         
          abmCliente.repaint();
View Full Code Here

TOP

Related Classes of vista.MostrarCliente

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.