com.iplanet.jato.view.event
Class JspEndChildDisplayEvent
java.lang.Object
|
+--java.util.EventObject
|
+--com.iplanet.jato.view.event.JspDisplayEvent
|
+--com.iplanet.jato.view.event.JspChildDisplayEvent
|
+--com.iplanet.jato.view.event.JspEndChildDisplayEvent
- All Implemented Interfaces:
- ChildContentDisplayEvent, ChildDisplayEvent, DisplayEvent, java.io.Serializable
- public class JspEndChildDisplayEvent
- extends JspChildDisplayEvent
- implements ChildContentDisplayEvent
Provides notification that the JSP tag associated with a perticular child View
is in the final phase of its dislay cycle.
Recipients of this event may interact with the JSP Tag and the PageContext
and thereby dynamically affect the content rendered by the JSP tag.
Most importantly, this event provides access to the "content" which the JSP
tag has already assembled but has not yet committed to the output buffer.
- Since:
- JATO/1.2
- Version:
- JATO/1.2.2 $Id: JspEndChildDisplayEvent.java,v 1.5 2002/03/16 03:26:43 todd Exp $
- See Also:
- Serialized Form
Fields inherited from class java.util.EventObject |
source |
Constructor Summary |
JspEndChildDisplayEvent(javax.servlet.jsp.tagext.Tag source,
javax.servlet.jsp.PageContext pageContext,
java.lang.String childName,
java.lang.String content)
Creates a JspEndChildDisplayEvent object |
Method Summary |
java.lang.String |
getContent()
Returns the content that the Tag has assembled. |
Methods inherited from class java.util.EventObject |
getSource, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
JspEndChildDisplayEvent
public JspEndChildDisplayEvent(javax.servlet.jsp.tagext.Tag source,
javax.servlet.jsp.PageContext pageContext,
java.lang.String childName,
java.lang.String content)
- Creates a
JspEndChildDisplayEvent
object
- Parameters:
source
- The JSP Tag source.pageContext
- The PageContext.childName
- the name of the child View associated with the tag.content
- the content that the Tag has assembled but not yet committed
to the output buffer.
getContent
public java.lang.String getContent()
- Returns the content that the Tag has assembled.
- Specified by:
getContent
in interface ChildContentDisplayEvent
- Returns:
- the content that the Tag has assembled but not yet committed
to the output buffer.