Package org.araneaframework.servlet

Examples of org.araneaframework.servlet.JspContext


 
  protected void render(OutputData output) throws Exception {
    if (viewSelector == null)
      throw new RuntimeException("Widget '" + getClass().getName() + "' does not have a view selector!");
   
    JspContext jspCtx = (JspContext) getEnvironment().getEntry(JspContext.class);
   
    String jsp = jspCtx.getJspPath() + "/" + viewSelector + ".jsp";
    ServletUtil.include(jsp, getEnvironment(), (ServletOutputData) output);
  }
View Full Code Here

TOP

Related Classes of org.araneaframework.servlet.JspContext

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.