Class AttachEvent
- java.lang.Object
-
- com.google.web.bindery.event.shared.Event<H>
-
- com.google.gwt.event.shared.GwtEvent<AttachEvent.Handler>
-
- com.google.gwt.event.logical.shared.AttachEvent
-
public class AttachEvent extends GwtEvent<AttachEvent.Handler>
Fired when the event source is attached to the browser's document or detached from it.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceAttachEvent.HandlerImplemented by objects that handleAttachEvent.-
Nested classes/interfaces inherited from class com.google.gwt.event.shared.GwtEvent
GwtEvent.Type<H>
-
-
Field Summary
Fields Modifier and Type Field Description (package private) static GwtEvent.Type<AttachEvent.Handler>TYPEThe event type.
-
Constructor Summary
Constructors Modifier Constructor Description protectedAttachEvent(boolean attached)Construct a newAttachEvent.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddispatch(AttachEvent.Handler handler)Should only be called byHandlerManager.static <S extends HasAttachHandlers>
voidfire(S source, boolean attached)Fires anAttachEventon all registered handlers in the handler source.GwtEvent.Type<AttachEvent.Handler>getAssociatedType()Returns theEvent.Typeused to register this event, allowing anEventBusto find handlers of the appropriate class.static GwtEvent.Type<AttachEvent.Handler>getType()Ensures the existence of the handler hook and then returns it.booleanisAttached()Returns true if this event announces that the source has been attached, false if it has been detached.java.lang.StringtoDebugString()This is a method used primarily for debugging.
-
-
-
Field Detail
-
TYPE
static GwtEvent.Type<AttachEvent.Handler> TYPE
The event type.
-
-
Constructor Detail
-
AttachEvent
protected AttachEvent(boolean attached)
Construct a newAttachEvent.- Parameters:
attached- true if the source has been attached
-
-
Method Detail
-
fire
public static <S extends HasAttachHandlers> void fire(S source, boolean attached)
Fires anAttachEventon all registered handlers in the handler source.- Type Parameters:
S- The handler source type- Parameters:
source- the source of the handlersattached- whether to announce an attach or detach
-
getType
public static GwtEvent.Type<AttachEvent.Handler> getType()
Ensures the existence of the handler hook and then returns it.- Returns:
- returns a handler hook
-
getAssociatedType
public final GwtEvent.Type<AttachEvent.Handler> getAssociatedType()
Description copied from class:EventReturns theEvent.Typeused to register this event, allowing anEventBusto find handlers of the appropriate class.- Specified by:
getAssociatedTypein classGwtEvent<AttachEvent.Handler>- Returns:
- the type
-
isAttached
public boolean isAttached()
Returns true if this event announces that the source has been attached, false if it has been detached.
-
toDebugString
public java.lang.String toDebugString()
Description copied from class:EventThis is a method used primarily for debugging. It gives a string representation of the event details. This does not override the toString method because the compiler cannot always optimize toString out correctly. Event types should override as desired.- Overrides:
toDebugStringin classEvent<AttachEvent.Handler>- Returns:
- a string representing the event's specifics.
-
dispatch
protected void dispatch(AttachEvent.Handler handler)
Description copied from class:GwtEventShould only be called byHandlerManager. In other words, do not use or call.- Specified by:
dispatchin classGwtEvent<AttachEvent.Handler>- Parameters:
handler- handler- See Also:
EventBus.dispatchEvent(Event, Object)
-
-