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
public void setRow(int row,
Object newRow)
throws TableException
- Throws:
TableException
getRow
public Object getRow(int row)
setColumn
public void setColumn(int column,
Object newColumn)
throws TableException
- Throws:
TableException
getColumn
public Object getColumn(int column)
setElement
public void setElement(int row,
int col,
Object newElement)
throws TableException
- Throws:
TableException
getElement
public Object getElement(int row,
int col)
getNrow
public int getNrow()
getNcol
public int getNcol()