Package org.apache.jsp.WEB_002dINF.aggregation

Source Code of org.apache.jsp.WEB_002dINF.aggregation.ColumnFragment_jsp

package org.apache.jsp.WEB_002dINF.aggregation;

import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import java.util.Iterator;
import org.apache.pluto.portalImpl.aggregation.Fragment;

public final class ColumnFragment_jsp extends org.apache.jasper.runtime.HttpJspBase
    implements org.apache.jasper.runtime.JspSourceDependent {

  private static java.util.List _jspx_dependants;

  public Object getDependants() {
    return _jspx_dependants;
  }

  public void _jspService(HttpServletRequest request, HttpServletResponse response)
        throws java.io.IOException, ServletException {

    JspFactory _jspxFactory = null;
    PageContext pageContext = null;
    ServletContext application = null;
    ServletConfig config = null;
    JspWriter out = null;
    Object page = this;
    JspWriter _jspx_out = null;
    PageContext _jspx_page_context = null;


    try {
      _jspxFactory = JspFactory.getDefaultFactory();
      response.setContentType("text/html");
      pageContext = _jspxFactory.getPageContext(this, request, response,
            null, false, 0, true);
      _jspx_page_context = pageContext;
      application = pageContext.getServletContext();
      config = pageContext.getServletConfig();
      out = pageContext.getOut();
      _jspx_out = out;

      out.write("\n\n\n\n");
      org.apache.pluto.portalImpl.aggregation.Fragment fragment = null;
      synchronized (request) {
        fragment = (org.apache.pluto.portalImpl.aggregation.Fragment) _jspx_page_context.getAttribute("fragment", PageContext.REQUEST_SCOPE);
        if (fragment == null){
          throw new java.lang.InstantiationException("bean fragment not found within scope");
        }
      }
      out.write("\n<!-- inside ColumnFragment -->\n");

        Iterator iterator = fragment.getChildFragments().iterator();

        while (iterator.hasNext())
        {

      out.write("\n<!-- inside ColumnFragment loop -->\n");
       
            Fragment subfragment = (Fragment)iterator.next();
            subfragment.service(request, response);

      out.write("\n<!-- inside ColumnFragment loop -->\n");
       
        }

      out.write("\n<!-- inside ColumnFragment -->\n");
    } catch (Throwable t) {
      if (!(t instanceof SkipPageException)){
        out = _jspx_out;
        if (out != null && out.getBufferSize() != 0)
          out.clearBuffer();
        if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
      }
    } finally {
      if (_jspxFactory != null) _jspxFactory.releasePageContext(_jspx_page_context);
    }
  }
}
TOP

Related Classes of org.apache.jsp.WEB_002dINF.aggregation.ColumnFragment_jsp

TOP
Copyright © 2018 www.massapi.com. 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.