blob: a6bc893a72b0c868fbe289a6e83a8aade0965455 [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.grid.data;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.statet.ecommons.waltable.data.IDataProvider;
public class DefaultCornerDataProvider implements IDataProvider {
private final IDataProvider columnHeaderDataProvider;
private final IDataProvider rowHeaderDataProvider;
public DefaultCornerDataProvider(final IDataProvider columnHeaderDataProvider, final IDataProvider rowHeaderDataProvider) {
this.columnHeaderDataProvider= columnHeaderDataProvider;
this.rowHeaderDataProvider= rowHeaderDataProvider;
}
@Override
public long getColumnCount() {
return this.rowHeaderDataProvider.getColumnCount();
}
@Override
public long getRowCount() {
return this.columnHeaderDataProvider.getRowCount();
}
@Override
public Object getDataValue(final long columnIndex, final long rowIndex, final int flags, final IProgressMonitor monitor) {
return ""; //$NON-NLS-1$
}
@Override
public void setDataValue(final long columnIndex, final long rowIndex, final Object newValue) {
throw new UnsupportedOperationException();
}
}