blob: b0a49374684f7052dc75bbd02afecac4df5ff4d1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018, 2020 Dirk Fauth.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Dirk Fauth <dirk.fauth@googlemail.com> - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.datachange;
/**
* Interface to support temporary data storage without updating the backing
* data.
*
* @since 1.6
*/
public interface TemporaryDataProvider {
/**
* Checks if this {@link TemporaryDataProvider} contains a temporary value
* for the given position.
*
* @param columnPosition
* The column position to check.
* @param rowPosition
* The row position to check.
* @return <code>true</code> if a temporary data value for the given
* position exists, <code>false</code> if not.
*/
boolean tracksDataChange(int columnPosition, int rowPosition);
/**
* Return the temporary data value for the given position.
*
* @param columnPosition
* The column position for which the data value should be
* returned.
* @param rowPosition
* The row position for which the data value should be returned.
* @return The data value for the given position.
*/
Object getDataValueByPosition(int columnPosition, int rowPosition);
}