Package org.apache.wicket.event
Interface IEvent<T>
-
- Type Parameters:
T- type of event payload
public interface IEvent<T>An event- Author:
- Igor Vaynberg (ivaynberg)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddontBroadcastDeeper()Stops the broadcast of this event any deeper into the hierarchy of the current sinkTgetPayload()IEventSourcegetSource()BroadcastgetType()voidstop()Stops any further broadcast of this event
-
-
-
Method Detail
-
stop
void stop()
Stops any further broadcast of this event
-
dontBroadcastDeeper
void dontBroadcastDeeper()
Stops the broadcast of this event any deeper into the hierarchy of the current sink
-
getType
Broadcast getType()
- Returns:
- type of broadcast that should be used to pass this event on
-
getSource
IEventSource getSource()
- Returns:
- the source of event
-
getPayload
T getPayload()
- Returns:
- payload
-
-