Class OpenEvent<T>
- java.lang.Object
-
- com.google.web.bindery.event.shared.Event<H>
-
- com.google.gwt.event.shared.GwtEvent<OpenHandler<T>>
-
- com.google.gwt.event.logical.shared.OpenEvent<T>
-
- Type Parameters:
T
- the type being opened
public class OpenEvent<T> extends GwtEvent<OpenHandler<T>>
Represents a open event.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.gwt.event.shared.GwtEvent
GwtEvent.Type<H>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
dispatch(OpenHandler<T> handler)
Should only be called byHandlerManager
.static <T> void
fire(HasOpenHandlers<T> source, T target)
Fires a open event on all registered handlers in the handler manager.If no such handlers exist, this method will do nothing.GwtEvent.Type<OpenHandler<T>>
getAssociatedType()
Returns theEvent.Type
used to register this event, allowing anEventBus
to find handlers of the appropriate class.T
getTarget()
Gets the target.static GwtEvent.Type<OpenHandler<?>>
getType()
Gets the type associated with this event.-
Methods inherited from class com.google.gwt.event.shared.GwtEvent
assertLive, getSource, isLive, kill, revive
-
Methods inherited from class com.google.web.bindery.event.shared.Event
setSource, toDebugString, toString
-
-
-
-
Constructor Detail
-
OpenEvent
protected OpenEvent(T target)
Creates a new open event.- Parameters:
target
- the ui object being opened
-
-
Method Detail
-
fire
public static <T> void fire(HasOpenHandlers<T> source, T target)
Fires a open event on all registered handlers in the handler manager.If no such handlers exist, this method will do nothing.- Type Parameters:
T
- the target type- Parameters:
source
- the source of the handlerstarget
- the target
-
getType
public static GwtEvent.Type<OpenHandler<?>> getType()
Gets the type associated with this event.- Returns:
- returns the handler type
-
getAssociatedType
public final GwtEvent.Type<OpenHandler<T>> getAssociatedType()
Description copied from class:Event
Returns theEvent.Type
used to register this event, allowing anEventBus
to find handlers of the appropriate class.- Specified by:
getAssociatedType
in classGwtEvent<OpenHandler<T>>
- Returns:
- the type
-
getTarget
public T getTarget()
Gets the target.- Returns:
- the target
-
dispatch
protected void dispatch(OpenHandler<T> handler)
Description copied from class:GwtEvent
Should only be called byHandlerManager
. In other words, do not use or call.- Specified by:
dispatch
in classGwtEvent<OpenHandler<T>>
- Parameters:
handler
- handler- See Also:
EventBus.dispatchEvent(Event, Object)
-
-