blob: ccc699aec85ff5dbd33e18cfaec1ea591fa64237 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2020 Original 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 authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.grid.data;
import org.eclipse.nebula.widgets.nattable.data.IDataProvider;
public class DefaultRowHeaderDataProvider implements IDataProvider {
protected final IDataProvider bodyDataProvider;
public DefaultRowHeaderDataProvider(IDataProvider bodyDataProvider) {
this.bodyDataProvider = bodyDataProvider;
}
@Override
public int getColumnCount() {
return 1;
}
@Override
public int getRowCount() {
return this.bodyDataProvider.getRowCount();
}
@Override
public Object getDataValue(int columnIndex, int rowIndex) {
return Integer.valueOf(rowIndex + 1);
}
@Override
public void setDataValue(int columnIndex, int rowIndex, Object newValue) {
throw new UnsupportedOperationException();
}
}