com.iplanet.jato.view.event
Class JspBeginChildDisplayEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--com.iplanet.jato.view.event.JspDisplayEvent
              |
              +--com.iplanet.jato.view.event.JspChildDisplayEvent
                    |
                    +--com.iplanet.jato.view.event.JspBeginChildDisplayEvent
All Implemented Interfaces:
ChildDisplayEvent, DisplayEvent, java.io.Serializable

public class JspBeginChildDisplayEvent
extends JspChildDisplayEvent

Provides notification that the JSP tag associated with a perticular child View is in the first 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. For example, at this point, the JSP Tag has not yet constructed the "content", therefore the recipient may affect that content by directly manipulating JSP attributes.

Since:
JATO/1.2
Version:
JATO/1.2.2 $Id: JspBeginChildDisplayEvent.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
JspBeginChildDisplayEvent(javax.servlet.jsp.tagext.Tag source, javax.servlet.jsp.PageContext pageContext, java.lang.String childName)
          Creates a JspBeginChildDisplayEvent object
 
Methods inherited from class com.iplanet.jato.view.event.JspChildDisplayEvent
getChildName, setChildName
 
Methods inherited from class com.iplanet.jato.view.event.JspDisplayEvent
getPageContext, getSourceTag
 
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
 
Methods inherited from interface com.iplanet.jato.view.event.DisplayEvent
getSource
 

Constructor Detail

JspBeginChildDisplayEvent

public JspBeginChildDisplayEvent(javax.servlet.jsp.tagext.Tag source,
                                 javax.servlet.jsp.PageContext pageContext,
                                 java.lang.String childName)
Creates a JspBeginChildDisplayEvent object
Parameters:
source - The JSP Tag source.
pageContext - The PageContext.
childName - the name of the child View associated with the tag.