Package org.apache.jasper.runtime
Class JspFragmentHelper
- java.lang.Object
- 
- javax.servlet.jsp.tagext.JspFragment
- 
- org.apache.jasper.runtime.JspFragmentHelper
 
 
- 
 public abstract class JspFragmentHelper extends JspFragment Helper class from which all Jsp Fragment helper classes extend. This class allows for the emulation of numerous fragments within a single class, which in turn reduces the load on the class loader since there are potentially many JspFragments in a single page.The class also provides various utility methods for JspFragment implementations. - Author:
- Mark Roth
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected PageContext_jspx_page_contextprotected intdiscriminatorprotected JspContextjspContextprotected JspTagparentTag
 - 
Constructor SummaryConstructors Constructor Description JspFragmentHelper(int discriminator, JspContext jspContext, JspTag parentTag)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description JspContextgetJspContext()Returns the JspContext that is bound to this JspFragment.JspTaggetParentTag()- 
Methods inherited from class javax.servlet.jsp.tagext.JspFragmentinvoke
 
- 
 
- 
- 
- 
Field Detail- 
discriminatorprotected final int discriminator 
 - 
jspContextprotected final JspContext jspContext 
 - 
_jspx_page_contextprotected final PageContext _jspx_page_context 
 - 
parentTagprotected final JspTag parentTag 
 
- 
 - 
Constructor Detail- 
JspFragmentHelperpublic JspFragmentHelper(int discriminator, JspContext jspContext, JspTag parentTag)
 
- 
 - 
Method Detail- 
getJspContextpublic JspContext getJspContext() Description copied from class:javax.servlet.jsp.tagext.JspFragmentReturns the JspContext that is bound to this JspFragment.- Specified by:
- getJspContextin class- JspFragment
- Returns:
- The JspContext used by this fragment at invocation time.
 
 - 
getParentTagpublic JspTag getParentTag() 
 
- 
 
-