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 void
dontBroadcastDeeper()
Stops the broadcast of this event any deeper into the hierarchy of the current sinkT
getPayload()
IEventSource
getSource()
Broadcast
getType()
boolean
isStop()
void
stop()
Stops any further broadcast of this event
-
-
-
Method Detail
-
stop
void stop()
Stops any further broadcast of this event
-
isStop
boolean isStop()
- Returns:
- true iff event has been stopped.
-
dontBroadcastDeeper
void dontBroadcastDeeper()
Stops the broadcast of this event any deeper into the hierarchy of the current sink
-
getSource
IEventSource getSource()
- Returns:
- the source of event
-
getPayload
T getPayload()
- Returns:
- payload
-
-