Package utn.frsf.gabinete.fw.generator

Examples of utn.frsf.gabinete.fw.generator.PageGenerator


@SuppressWarnings("serial")
public class Html5fwServlet extends HttpServlet {
  public void doGet(HttpServletRequest req, HttpServletResponse resp)
      throws IOException {
    PageGenerator pg = new PageGenerator();
    resp.setContentType("text/html");
    resp.getWriter().println(pg.getPage(Auto.class));
  }
View Full Code Here

TOP

Related Classes of utn.frsf.gabinete.fw.generator.PageGenerator

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.