java.beans.beancontext
public abstract class BeanContextEvent extends EventObject
BeanContexts.
Since: 1.2
| Field Summary | |
|---|---|
| protected BeanContext | propagatedFrom
The BeanContext that most recently passed this
event on. |
| Constructor Summary | |
|---|---|
| protected | BeanContextEvent(BeanContext source)
Create a new event, from the specified BeanContext.
|
| Method Summary | |
|---|---|
| BeanContext | getBeanContext()
Get the BeanContext that originated this event. |
| BeanContext | getPropagatedFrom()
Get the most recent propagator of this event.
|
| boolean | isPropagated()
Tell whether this event has been propagated. |
| void | setPropagatedFrom(BeanContext propagator)
Set the most recent propagator of this event. |
BeanContext that most recently passed this
event on.BeanContext.
propagatedFrom will be initialized to
null.
Parameters: source the source of the event.
BeanContext that originated this event.Returns: the originator of this event.
null, you have received the event
straight from the source.
Returns: the most recent propagator of this event.
Returns: true iff getPropagatedFrom() != null.
Parameters: propagator the most recent propagator of this event.