blob: 6df5002b42a30c819880e93238155b9789bcefe8 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2012, 2021 Original NatTable authors 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:
# Original NatTable authors and others - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.ecommons.waltable.data.validate;
import org.eclipse.statet.ecommons.waltable.config.IConfigRegistry;
import org.eclipse.statet.ecommons.waltable.layer.cell.ILayerCell;
public abstract class ContextualDataValidator implements IDataValidator {
@Override
public boolean validate(final long columnIndex, final long rowIndex, final Object newValue) {
throw new UnsupportedOperationException(this.getClass().getName()
+ " is a ContextualDataValidator and has therefore to be called with context informations."); //$NON-NLS-1$
}
@Override
public abstract boolean validate(ILayerCell cell, IConfigRegistry configRegistry, Object newValue);
}