| org.apache.beehive.controls.api.events.RemoteEventDispatcher
RemoteEventDispatcher | public interface RemoteEventDispatcher (Code) | | The RemoteEventDispatcher interface defines the method signature that a container supporting
the external dispatch of Control events would implement if events can be dispatched using RMI.
|
dispatchEvent | public Object dispatchEvent(ControlHandle target, EventRef event, Object[] args) throws RemoteException(Code) | | Dispatches a Control event to a target control.
Parameters: target - the target control Parameters: event - the event to deliver to the control Parameters: args - the parameters to the control event throws: IllegalAccessException - the underlying event method is not accessible due toaccess control. throws: IllegalArgumentException - the target is not valid, the event is not a valid eventtype for the requested target, or the argument types do not match the eventsignature. throws: InvocationTargetException - wraps any exception thrown by the underlying eventhandler. |
|
|