Examples of eliminarProyecto()


Examples of unlp.edu.core.Sistema.eliminarProyecto()

   
    Sistema sistema = Sistema.getInstance();
    Proyecto proyecto = sistema.getProyectoPorNombre(nombreProyecto);
    if (proyecto != null)
    {
      if (sistema.eliminarProyecto(proyecto))
      {
        // Mostramos la siguiente vista
        return mapping.findForward("ok");
      } else {
        errors.add(ActionErrors.GLOBAL_MESSAGE,new ActionMessage("fallo.eliminar"));
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.