* @param filename The name of the FITS file
* @param fits object to use for FITS I/O
* @param navigator window object managing the table display and plotting
*/
public static void plotTables(String filename, Fits fits, Navigator navigator) throws FitsException, IOException {
BinaryTableHDU hdu = findBinaryTableHDU(fits, CATINFO);
if (hdu == null) {
return;
}
int nrows = hdu.getNRows();
for (int rowIndex = 0; rowIndex < nrows; rowIndex++) {
Object[] row = hdu.getRow(rowIndex);
String name = (String) row[0];
_plotTable(filename, fits, navigator, name);
}
}