nom.tam.util
Interface DataTable

All Known Implementing Classes:
ColumnTable

public interface DataTable

This interface defines the properties that a generic table should have.


Method Summary
 Object getColumn(int column)
           
 Object getElement(int row, int col)
           
 int getNcol()
           
 int getNrow()
           
 Object getRow(int row)
           
 void setColumn(int column, Object newColumn)
           
 void setElement(int row, int col, Object newElement)
           
 void setRow(int row, Object newRow)
           
 

Method Detail

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()