Package com.jfinal.render

Examples of com.jfinal.render.FreeMarkerRender


      throw new IllegalArgumentException("CacheInterceptor can not support the render of the type : " + render.getClass().getName());
  }
 
  public Render createRender() {
    if (renderType == RenderType.FREE_MARKER_RENDER)
      return new FreeMarkerRender(view);
    else if (renderType == RenderType.JSP_RENDER)
      return new JspRender(view);
    else if (renderType == RenderType.VELOCITY_RENDER)
      return new VelocityRender(view);
    else if (renderType == RenderType.XML_RENDER)
View Full Code Here

TOP

Related Classes of com.jfinal.render.FreeMarkerRender

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.