Package com.jfinal.render

Examples of com.jfinal.render.XmlRender


    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)
      return new XmlRender(view);
    throw new IllegalArgumentException("CacheInterceptor can not support the renderType of the value : " + renderType);
  }
View Full Code Here

TOP

Related Classes of com.jfinal.render.XmlRender

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.