Class ChangedEvent


public class ChangedEvent extends BrowserEvent<RangeChangedEventHandler>
  • Constructor Details

  • Method Details

    • getFiringCanvas

      public Canvas getFiringCanvas()
      Returns the Canvas firing the event.
      Returns:
      Canvas firing the event
    • fire

      public static <S extends HasRangeChangedEventHandlers & HasHandlers> void fire(S source, JavaScriptObject jsObj)
      Fires a open event on all registered handlers in the handler manager.If no such handlers exist, this method will do nothing.
      Type Parameters:
      S - The event source
      Parameters:
      source - the source of the handlers
      jsObj - the native event
    • getType

      public static GwtEvent.Type<RangeChangedEventHandler> getType()
      Gets the type associated with this event.
      Returns:
      returns the handler type
    • dispatch

      protected void dispatch(RangeChangedEventHandler handler)
      Specified by:
      dispatch in class GwtEvent<RangeChangedEventHandler>
    • getAssociatedType

      public final GwtEvent.Type<RangeChangedEventHandler> getAssociatedType()
      Specified by:
      getAssociatedType in class GwtEvent<RangeChangedEventHandler>
    • getStartValue

      public float getStartValue()
      Deprecated.
      new start value
      Returns:
      new start value
    • getStartValueAsDouble

      public double getStartValueAsDouble()
      new start value
      Returns:
      new start value
    • getEndValue

      public float getEndValue()
      Deprecated.
      new end value
      Returns:
      new end value
    • getEndValueAsDouble

      public double getEndValueAsDouble()
      new end value
      Returns:
      new end value
    • getIsDragging

      public boolean getIsDragging()
      whether the user is still in the middle of a drag, so that expensive operations can be avoided if needed
      Returns:
      whether the user is still in the middle of a drag, so that expensive operations can be avoided if needed