Class EditorCancelEvent<T>

    • Field Summary

      • Fields inherited from class java.util.EventObject

        source
    • Constructor Summary

      Constructors 
      Constructor Description
      EditorCancelEvent​(Editor<T> editor, T bean)
      Constructor for a editor cancel event.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T getBean()
      Gets the bean being edited.
      Grid<T> getGrid()
      Gets the editors' grid.
      Editor<T> getSource()  
      • Methods inherited from class java.util.EventObject

        toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • EditorCancelEvent

        public EditorCancelEvent​(Editor<T> editor,
                                 T bean)
        Constructor for a editor cancel event.
        Parameters:
        editor - the source of the event
        bean - the bean being edited
    • Method Detail

      • getSource

        public Editor<T> getSource()
        Overrides:
        getSource in class java.util.EventObject
      • getGrid

        public Grid<T> getGrid()
        Gets the editors' grid.
        Returns:
        the editors' grid
      • getBean

        public T getBean()
        Gets the bean being edited.
        Returns:
        the bean being edited
        Since:
        8.0.3