nom.tam.util
Interface DataTable
- All Known Implementing Classes:
- ColumnTable
public interface DataTable
This interface defines the properties that
a generic table should have.
setRow
void setRow(int row,
Object newRow)
throws TableException
- Throws:
TableException
getRow
Object getRow(int row)
setColumn
void setColumn(int column,
Object newColumn)
throws TableException
- Throws:
TableException
getColumn
Object getColumn(int column)
setElement
void setElement(int row,
int col,
Object newElement)
throws TableException
- Throws:
TableException
getElement
Object getElement(int row,
int col)
getNrow
int getNrow()
getNcol
int getNcol()