com.iplanet.jato.view.event
Class JspChildDisplayEvent
java.lang.Object
|
+--java.util.EventObject
|
+--com.iplanet.jato.view.event.JspDisplayEvent
|
+--com.iplanet.jato.view.event.JspChildDisplayEvent
- All Implemented Interfaces:
- ChildDisplayEvent, DisplayEvent, java.io.Serializable
- Direct Known Subclasses:
- JspBeginChildDisplayEvent, JspEndChildDisplayEvent
- public class JspChildDisplayEvent
- extends JspDisplayEvent
- implements ChildDisplayEvent
Provides notification that the JSP Tag associated with a perticular child View
is in the midst of its display 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.
- Since:
- JATO/1.2
- Version:
- JATO/1.2.2 $Id: JspChildDisplayEvent.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 |
JspChildDisplayEvent(javax.servlet.jsp.tagext.Tag source,
javax.servlet.jsp.PageContext pageContext,
java.lang.String childName)
Creates a JspChildDisplayEvent object |
Method Summary |
java.lang.String |
getChildName()
Returns the name of the child View associated with the tag. |
protected void |
setChildName(java.lang.String value)
Sets the name of the child View. |
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 |
JspChildDisplayEvent
public JspChildDisplayEvent(javax.servlet.jsp.tagext.Tag source,
javax.servlet.jsp.PageContext pageContext,
java.lang.String childName)
- Creates a
JspChildDisplayEvent
object
- Parameters:
source
- The JSP Tag source.pageContext
- The PageContext.childName
- the name of the child View associated with the tag.
getChildName
public java.lang.String getChildName()
- Returns the name of the child View associated with the tag.
- Specified by:
getChildName
in interface ChildDisplayEvent
- Returns:
- the name of the child View associated with the tag.
setChildName
protected void setChildName(java.lang.String value)
- Sets the name of the child View.
- Parameters:
the
- name of the child View associated with the tag.