blob: 8e438225b00cc096393914da718091ce561b38dc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2020 Dirk Fauth and others.
*
* 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.util;
/**
* Marker interface for specifying a key for the {@link CalculatedValueCache}.
* Remember to implement <code>equals()</code> and <code>hashCode()</code> so it
* works correctly!
*/
public interface ICalculatedValueCacheKey {
}