Class RowDeleteDataChangeHandler

    • Constructor Detail

    • Method Detail

      • isColumnDirty

        public boolean isColumnDirty​(int columnPosition)
        Description copied from interface: DataChangeHandler
        Checks if the column with the given position contains cells in a dirty state.
        Specified by:
        isColumnDirty in interface DataChangeHandler
        Parameters:
        columnPosition - The position of the column whose dirty state should be checked.
        Returns:
        true if the column contains cells that are marked as dirty (data has changed and not saved yet), false if not.
      • isRowDirty

        public boolean isRowDirty​(int rowPosition)
        Description copied from interface: DataChangeHandler
        Checks if the row with the given position contains cells in a dirty state.
        Specified by:
        isRowDirty in interface DataChangeHandler
        Parameters:
        rowPosition - The position of the row whose dirty state should be checked.
        Returns:
        true if the row contains cells that are marked as dirty (data has changed and not saved yet), false if not.
      • isCellDirty

        public boolean isCellDirty​(int columnPosition,
                                   int rowPosition)
        Description copied from interface: DataChangeHandler
        Checks if the cell at the given position is dirty.
        Specified by:
        isCellDirty in interface DataChangeHandler
        Parameters:
        columnPosition - The column position of the cell whose dirty state should be checked.
        rowPosition - The row position of the cell whose dirty state should be checked.
        Returns:
        true if the cell is dirty (data has changed and not saved yet), false if not.