Examples of UsuarioModificar


Examples of Vista.UsuarioModificar

        }
    }

    public void ventanaModificar(LinkedHashMap<Integer, Usuario> mapaUsuarios) {
        if (mapaUsuarios.size() > 0) {
            UsuarioModificar usuarioModificar = new UsuarioModificar(mapaUsuarios);
            usuarioModificar.setVisible(true);

        } else {
            JOptionPane.showMessageDialog(null, "No se pueden eliminar usuarios porque no hay usuarios cargados.");
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.