|
ContainerEvent (Catalina Internal API Documentation)
org.apache.catalina
Class ContainerEvent
java.lang.Object
|
+--java.util.EventObject
|
+--org.apache.catalina.ContainerEvent
- All Implemented Interfaces:
- java.io.Serializable
- public final class ContainerEvent
- extends java.util.EventObject
General event for notifying listeners of significant changes on a Container.
- Version:
- $Revision: 1.3 $ $Date: 2001/07/22 20:13:30 $
- Author:
- Craig R. McClanahan
- See Also:
- Serialized Form
Fields inherited from class java.util.EventObject |
source |
Constructor Summary |
ContainerEvent(Container container,
java.lang.String type,
java.lang.Object data)
Construct a new ContainerEvent with the specified parameters. |
Method Summary |
Container |
getContainer()
Return the Container on which this event occurred. |
java.lang.Object |
getData()
Return the event data of this event. |
java.lang.String |
getType()
Return the event type of this event. |
java.lang.String |
toString()
Return a string representation of this event. |
Methods inherited from class java.util.EventObject |
getSource |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ContainerEvent
public ContainerEvent(Container container,
java.lang.String type,
java.lang.Object data)
- Construct a new ContainerEvent with the specified parameters.
- Parameters:
container - Container on which this event occurredtype - Event typedata - Event data
getData
public java.lang.Object getData()
- Return the event data of this event.
getContainer
public Container getContainer()
- Return the Container on which this event occurred.
getType
public java.lang.String getType()
- Return the event type of this event.
toString
public java.lang.String toString()
- Return a string representation of this event.
- Overrides:
toString in class java.util.EventObject
Copyright © 2000-2001 Apache Software Foundation. All Rights Reserved.
|