Class ResizeEvent
- java.lang.Object
-
- com.google.web.bindery.event.shared.Event<H>
-
- com.google.gwt.event.shared.GwtEvent<ResizeHandler>
-
- com.google.gwt.event.logical.shared.ResizeEvent
-
public class ResizeEvent extends GwtEvent<ResizeHandler>
Fired when the event source is resized.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.gwt.event.shared.GwtEvent
GwtEvent.Type<H>
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedResizeEvent(int width, int height)Construct a newResizeEvent.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddispatch(ResizeHandler handler)Should only be called byHandlerManager.static <S extends HasResizeHandlers & HasHandlers>
voidfire(S source, int width, int height)Fires a resize event on all registered handlers in the handler source.GwtEvent.Type<ResizeHandler>getAssociatedType()Returns theEvent.Typeused to register this event, allowing anEventBusto find handlers of the appropriate class.intgetHeight()Returns the new height.static GwtEvent.Type<ResizeHandler>getType()Ensures the existence of the handler hook and then returns it.intgetWidth()Returns the new width.java.lang.StringtoDebugString()This is a method used primarily for debugging.
-
-
-
Constructor Detail
-
ResizeEvent
protected ResizeEvent(int width, int height)Construct a newResizeEvent.- Parameters:
width- the new widthheight- the new height
-
-
Method Detail
-
fire
public static <S extends HasResizeHandlers & HasHandlers> void fire(S source, int width, int height)
Fires a resize event on all registered handlers in the handler source.- Type Parameters:
S- The handler source- Parameters:
source- the source of the handlerswidth- the new widthheight- the new height
-
getType
public static GwtEvent.Type<ResizeHandler> getType()
Ensures the existence of the handler hook and then returns it.- Returns:
- returns a handler hook
-
getAssociatedType
public final GwtEvent.Type<ResizeHandler> getAssociatedType()
Description copied from class:EventReturns theEvent.Typeused to register this event, allowing anEventBusto find handlers of the appropriate class.- Specified by:
getAssociatedTypein classGwtEvent<ResizeHandler>- Returns:
- the type
-
getHeight
public int getHeight()
Returns the new height.- Returns:
- the new height
-
getWidth
public int getWidth()
Returns the new width.- Returns:
- the new width
-
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<ResizeHandler>- Returns:
- a string representing the event's specifics.
-
dispatch
protected void dispatch(ResizeHandler handler)
Description copied from class:GwtEventShould only be called byHandlerManager. In other words, do not use or call.- Specified by:
dispatchin classGwtEvent<ResizeHandler>- Parameters:
handler- handler- See Also:
EventBus.dispatchEvent(Event, Object)
-
-