Copyright © 2011 Citra Technologies. All Rights Reserved.

com.citra.table
Interface TableDefinition

All Known Subinterfaces:
DatabaseTableDefinition, MeasureDefinition
All Known Implementing Classes:
DefaultDatabaseTableDefinition, DefaultMeasureDefinition

public interface TableDefinition

This interface supplies methods that define the structure of a table model.


Method Summary
 Class getColumnClass(int columnIndex)
          Returns the class of all the cells in the column.
 int getColumnCount()
          Returns the number of columns.
 String getColumnName(int columnIndex)
          Returns the name of the column at columnIndex as it will be displayed by the table
 

Method Detail

getColumnClass

Class getColumnClass(int columnIndex)
Returns the class of all the cells in the column.

Parameters:
columnIndex - the index of the column
Returns:
the class of all the cells in the column.

getColumnCount

int getColumnCount()
Returns the number of columns.

Returns:
the number of columns.

getColumnName

String getColumnName(int columnIndex)
Returns the name of the column at columnIndex as it will be displayed by the table

Parameters:
columnIndex - the index of the column
Returns:
the name of the column

Copyright © 2011 Citra Technologies. All Rights Reserved.