Package com.google.gwt.view.client
Class RangeChangeEvent
- java.lang.Object
-
- com.google.web.bindery.event.shared.Event<H>
-
- com.google.gwt.event.shared.GwtEvent<RangeChangeEvent.Handler>
-
- com.google.gwt.view.client.RangeChangeEvent
-
public class RangeChangeEvent extends GwtEvent<RangeChangeEvent.Handler>
Represents a range change event.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceRangeChangeEvent.HandlerHandler interface forRangeChangeEventevents.-
Nested classes/interfaces inherited from class com.google.gwt.event.shared.GwtEvent
GwtEvent.Type<H>
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedRangeChangeEvent(Range range)Creates aRangeChangeEvent.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddispatch(RangeChangeEvent.Handler handler)Should only be called byHandlerManager.static voidfire(HasRows source, Range range)Fires aRangeChangeEventon all registered handlers in the handler manager.GwtEvent.Type<RangeChangeEvent.Handler>getAssociatedType()Returns theEvent.Typeused to register this event, allowing anEventBusto find handlers of the appropriate class.RangegetNewRange()Gets the new range.static GwtEvent.Type<RangeChangeEvent.Handler>getType()Gets the type associated with this event.java.lang.StringtoDebugString()This is a method used primarily for debugging.
-
-
-
Constructor Detail
-
RangeChangeEvent
protected RangeChangeEvent(Range range)
Creates aRangeChangeEvent.- Parameters:
range- the new range
-
-
Method Detail
-
fire
public static void fire(HasRows source, Range range)
Fires aRangeChangeEventon all registered handlers in the handler manager. If no such handlers exist, this method will do nothing.- Parameters:
source- the source of the handlersrange- the new range
-
getType
public static GwtEvent.Type<RangeChangeEvent.Handler> getType()
Gets the type associated with this event.- Returns:
- returns the handler type
-
getAssociatedType
public final GwtEvent.Type<RangeChangeEvent.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<RangeChangeEvent.Handler>- Returns:
- the type
-
getNewRange
public Range getNewRange()
Gets the new range.- Returns:
- the new range
-
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<RangeChangeEvent.Handler>- Returns:
- a string representing the event's specifics.
-
dispatch
protected void dispatch(RangeChangeEvent.Handler handler)
Description copied from class:GwtEventShould only be called byHandlerManager. In other words, do not use or call.- Specified by:
dispatchin classGwtEvent<RangeChangeEvent.Handler>- Parameters:
handler- handler- See Also:
EventBus.dispatchEvent(Event, Object)
-
-