blob: addc20db636d83028fad48f0dd0c290c6b92fb2f [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.config;
import org.eclipse.statet.ecommons.waltable.layer.cell.ILayerCell;
public abstract class ContextualEditableRule implements IEditableRule {
public boolean isEditable(final long columnIndex, final long rowIndex) {
throw new UnsupportedOperationException(this.getClass().getName()
+ " is a ContextualEditableRule and has therefore to be called with context informations."); //$NON-NLS-1$
}
@Override
public abstract boolean isEditable(ILayerCell cell, IConfigRegistry configRegistry);
}