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
 void dontBroadcastDeeper()
          Stops the broadcast of this event any deeper into the hierarchy of the current sink
 T getPayload()
           
 IEventSource getSource()
           
 Broadcast getType()
           
 void stop()
          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


Copyright © 2006-2011 Apache Software Foundation. All Rights Reserved.