Class CellSavedEvent


public class CellSavedEvent extends BrowserEvent<CellSavedHandler>
  • Constructor Details

  • Method Details

    • getFiringCanvas

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

      public static <S extends HasCellSavedHandlers & 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<CellSavedHandler> getType()
      Gets the type associated with this event.
      Returns:
      returns the handler type
    • dispatch

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

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

      public ListGridRecord getRecord()
      record for the cell being changed
      Returns:
      record for the cell being changed
    • getNewValue

      public Object getNewValue()
      new value for the cell
      Returns:
      new value for the cell
    • getOldValue

      public Object getOldValue()
      old value for the cell
      Returns:
      old value for the cell
    • getRowNum

      public int getRowNum()
      row number for the cell
      Returns:
      row number for the cell
    • getColNum

      public int getColNum()
      column number of the cell
      Returns:
      column number of the cell