blob: 886fae91a36aefeba2b07395dc9408da4a5040f1 [file] [log] [blame]
package org.eclipse.ptp.debug.internal.ui.views;
/**
* @author clement
*
*/
public interface ICTableModel {
Object getContentAt(int col, int row);
AbstractCTableCellEditor getCellEditor(int col, int row);
int getRowCount();
int getFixedRowCount();
int getColumnCount();
int getFixedColumnCount();
int getColumnWidth(int col);
boolean isColumnResizable(int col);
void setColumnWidth(int col, int value);
int getRowHeight();
boolean isRowResizable();
int getRowHeightMinimum();
int getColumnWidthMinimum();
void setRowHeight(int value);
CTableCellRenderer getCellRenderer(int col, int row);
void setContentAt(int col, int row, Object value);
}