org.apache.bsf.util.event |
|
Java Source File Name | Type | Comment |
EventAdapter.java | Interface | EventAdapter is the interface that all event adapters must
implement in order to work with the automatic event adapter generation
model. |
EventAdapterImpl.java | Class | EventAdapterImpl is a default implementation of the EventAdapter
interface that specific event adapters may choose to subclass from
instead of implementing the interface themselves. |
EventAdapterRegistry.java | Class | The EventAdapterRegistry is the registry of event adapters.
If a desired adapter is not found, the adapter will be dynamically
generated when lookup is attempted. |
EventProcessor.java | Interface | EventProcessor is the interface that event adapters use to
delegate events they received to be delivered to the appropriate target.
They can simply deliver the event using processEvent or, if the event
can be excepted to, via processExceptionableEvent (in which case the
adapter is expected to forward on an exception to the source bean).
author: Sanjiva Weerawarana author: Matthew J. |