Package es.unizar.cps.tecnodiscap.gui

Examples of es.unizar.cps.tecnodiscap.gui.NombreUsuario


    }
    return buttonNuevo;
  }

  private boolean dialogoAdminUsuarios() {
    NombreUsuario dialog = new NombreUsuario(this);
    if (dialog.isAceptar()) {
      if (gui.procesadorXML.getImagen(dialog.getNombre()) == null) {
        imagen = new Imagen();
        imagen.setNombre(dialog.getNombre());
      } else {
        JOptionPane.showMessageDialog(this,
            "No se puede repetir el nombre: " + dialog.getNombre(),
            "El nombre ya existe", JOptionPane.ERROR_MESSAGE);
        return false;
      }
    }
    return dialog.isAceptar();
  }
View Full Code Here

TOP

Related Classes of es.unizar.cps.tecnodiscap.gui.NombreUsuario

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.