| java.lang.Object java.util.EventObject org.apache.catalina.LifecycleEvent
LifecycleEvent | final public class LifecycleEvent extends EventObject (Code) | | General event for notifying listeners of significant changes on a component
that implements the Lifecycle interface. In particular, this will be useful
on Containers, where these events replace the ContextInterceptor concept in
Tomcat 3.x.
author: Craig R. McClanahan version: $Revision: 1.2 $ $Date: 2004/02/27 14:58:38 $ |
LifecycleEvent | public LifecycleEvent(Lifecycle lifecycle, String type)(Code) | | Construct a new LifecycleEvent with the specified parameters.
Parameters: lifecycle - Component on which this event occurred Parameters: type - Event type (required) |
LifecycleEvent | public LifecycleEvent(Lifecycle lifecycle, String type, Object data)(Code) | | Construct a new LifecycleEvent with the specified parameters.
Parameters: lifecycle - Component on which this event occurred Parameters: type - Event type (required) Parameters: data - Event data (if any) |
getData | public Object getData()(Code) | | Return the event data of this event.
|
getLifecycle | public Lifecycle getLifecycle()(Code) | | Return the Lifecycle on which this event occurred.
|
getType | public String getType()(Code) | | Return the event type of this event.
|
|
|