eap.fits
Class FitsASCIITableData
java.lang.Object
eap.fits.FitsData
eap.fits.FitsTableData
eap.fits.FitsASCIITableData
- All Implemented Interfaces:
- TableModel
- public class FitsASCIITableData
- extends FitsTableData
| Methods inherited from class eap.fits.FitsTableData |
addTableModelListener, findColumn, fireTableModelEvent, fireTableModelEvent, getColumn, getColumnClass, getColumnCount, getColumnName, getRowCount, goToElement, isCellEditable, removeTableModelListener |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
FitsASCIITableData
public FitsASCIITableData(FitsHeader header)
throws FitsException
getValueAt
public Object getValueAt(int row,
int col)
- Return the value for a given row and column.
This method is to satisfy the contract for the TableModel interface
It catches FitsExceptions and returns a null pointer if there is an error.
- Parameters:
row - the desired row counting from zerocol - the desired column counting from zero.
- Returns:
- the tabel value. This can be a Number, Boolean, String, List or null.
Lists are used to return vector elements and null is returned
if there is an error in the FITS format of the table.
setValueAt
public void setValueAt(Object value,
int row,
int col)