Class CloseEvent<T>
- java.lang.Object
-
- com.google.web.bindery.event.shared.Event<H>
-
- com.google.gwt.event.shared.GwtEvent<CloseHandler<T>>
-
- com.google.gwt.event.logical.shared.CloseEvent<T>
-
- Type Parameters:
T- the type being closed
public class CloseEvent<T> extends GwtEvent<CloseHandler<T>>
Represents a close event.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.gwt.event.shared.GwtEvent
GwtEvent.Type<H>
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedCloseEvent(T target, boolean autoClosed)Creates a new close event.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddispatch(CloseHandler<T> handler)Should only be called byHandlerManager.static <T> voidfire(HasCloseHandlers<T> source, T target)Fires a close event on all registered handlers in the handler manager.static <T> voidfire(HasCloseHandlers<T> source, T target, boolean autoClosed)Fires a close event on all registered handlers in the handler manager.GwtEvent.Type<CloseHandler<T>>getAssociatedType()Returns theEvent.Typeused to register this event, allowing anEventBusto find handlers of the appropriate class.TgetTarget()Gets the target.static GwtEvent.Type<CloseHandler<?>>getType()Gets the type associated with this event.booleanisAutoClosed()Was the target automatically closed?-
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
-
CloseEvent
protected CloseEvent(T target, boolean autoClosed)
Creates a new close event.- Parameters:
target- the targetautoClosed- whether it is auto closed
-
-
Method Detail
-
fire
public static <T> void fire(HasCloseHandlers<T> source, T target)
Fires a close 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
-
fire
public static <T> void fire(HasCloseHandlers<T> source, T target, boolean autoClosed)
Fires a close event on all registered handlers in the handler manager.- Type Parameters:
T- the target type- Parameters:
source- the source of the handlerstarget- the targetautoClosed- was the target closed automatically
-
getType
public static GwtEvent.Type<CloseHandler<?>> getType()
Gets the type associated with this event.- Returns:
- returns the handler type
-
getAssociatedType
public final GwtEvent.Type<CloseHandler<T>> getAssociatedType()
Description copied from class:EventReturns theEvent.Typeused to register this event, allowing anEventBusto find handlers of the appropriate class.- Specified by:
getAssociatedTypein classGwtEvent<CloseHandler<T>>- Returns:
- the type
-
getTarget
public T getTarget()
Gets the target.- Returns:
- the target
-
isAutoClosed
public boolean isAutoClosed()
Was the target automatically closed?- Returns:
- auto closed
-
dispatch
protected void dispatch(CloseHandler<T> handler)
Description copied from class:GwtEventShould only be called byHandlerManager. In other words, do not use or call.- Specified by:
dispatchin classGwtEvent<CloseHandler<T>>- Parameters:
handler- handler- See Also:
EventBus.dispatchEvent(Event, Object)
-
-