public interface TableData
Modifier and Type | Method and Description |
---|---|
int |
addColumn(java.lang.Object newCol) |
int |
addRow(java.lang.Object[] newRow) |
void |
deleteColumns(int row,
int len) |
void |
deleteRows(int row,
int len) |
java.lang.Object |
getColumn(int col) |
java.lang.Object |
getElement(int row,
int col) |
int |
getNCols() |
int |
getNRows() |
java.lang.Object[] |
getRow(int row) |
void |
setColumn(int col,
java.lang.Object newCol) |
void |
setElement(int row,
int col,
java.lang.Object element) |
void |
setRow(int row,
java.lang.Object[] newRow) |
void |
updateAfterDelete(int oldNcol,
Header hdr) |
java.lang.Object[] getRow(int row) throws FitsException
FitsException
java.lang.Object getColumn(int col) throws FitsException
FitsException
java.lang.Object getElement(int row, int col) throws FitsException
FitsException
void setRow(int row, java.lang.Object[] newRow) throws FitsException
FitsException
void setColumn(int col, java.lang.Object newCol) throws FitsException
FitsException
void setElement(int row, int col, java.lang.Object element) throws FitsException
FitsException
int addRow(java.lang.Object[] newRow) throws FitsException
FitsException
int addColumn(java.lang.Object newCol) throws FitsException
FitsException
void deleteRows(int row, int len) throws FitsException
FitsException
void deleteColumns(int row, int len) throws FitsException
FitsException
void updateAfterDelete(int oldNcol, Header hdr) throws FitsException
FitsException
int getNCols()
int getNRows()