Class DataUpdateEvent

    • Constructor Detail

      • DataUpdateEvent

        public DataUpdateEvent​(ILayer layer,
                               int columnPosition,
                               int rowPosition,
                               Object oldValue,
                               Object newValue)
        Create a new DataUpdateEvent.
        Parameters:
        layer - The layer to which the position values match.
        columnPosition - The column position of the cell whose data was updated.
        rowPosition - The row position of the cell whose data was updated.
        oldValue - The old value before the data modification.
        newValue - The new value after the data modification.
      • DataUpdateEvent

        protected DataUpdateEvent​(DataUpdateEvent event)
        Constructor that is used to clone an even.
        Parameters:
        event - The event that should be cloned.
    • Method Detail

      • getOldValue

        public Object getOldValue()
        Returns:
        The old value before the data modification.
      • getNewValue

        public Object getNewValue()
        Returns:
        The new value after the data modification.