org.apache.jasper.runtime
类 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.

作者:
Mark Roth

字段摘要
protected  PageContext _jspx_page_context
           
protected  int discriminator
           
protected  JspContext jspContext
           
protected  JspTag parentTag
           
 
构造方法摘要
JspFragmentHelper(int discriminator, JspContext jspContext, JspTag parentTag)
           
 
方法摘要
 JspContext getJspContext()
          Returns the JspContext that is bound to this JspFragment.
 JspTag getParentTag()
           
 
从类 javax.servlet.jsp.tagext.JspFragment 继承的方法
invoke
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

字段详细信息

discriminator

protected int discriminator

jspContext

protected JspContext jspContext

_jspx_page_context

protected PageContext _jspx_page_context

parentTag

protected JspTag parentTag
构造方法详细信息

JspFragmentHelper

public JspFragmentHelper(int discriminator,
                         JspContext jspContext,
                         JspTag parentTag)
方法详细信息

getJspContext

public JspContext getJspContext()
从类 JspFragment 复制的描述
Returns the JspContext that is bound to this JspFragment.

指定者:
JspFragment 中的 getJspContext
返回:
The JspContext used by this fragment at invocation time.

getParentTag

public JspTag getParentTag()


Copyright © 2013. All Rights Reserved.