Package utn.frsf.gabinete.fw.generator.html

Examples of utn.frsf.gabinete.fw.generator.html.Document


    metadata = new MetadataLoad();
  }
 
  public String getPage(Class entidad){
    Formulario frm = metadata.generarEntidad(entidad);
    Document docHtml5 = new Document();
    docHtml5.head().title("TEST").css("/css/redmond/jquery-ui-1.8.18.custom.css").js("/js/jquery-1.7.1.min.js").js("/js/jquery-ui-1.8.18.custom.min.js").js("/js/fw.js"); //
    docHtml5.body().form(frm);
    return docHtml5.generarElemento();
  }
View Full Code Here

TOP

Related Classes of utn.frsf.gabinete.fw.generator.html.Document

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.