public DcwRecordFile[] getTables(DcwRecordFile drf) throws FormatException {
DcwRecordFile[] retval = new DcwRecordFile[drf.getColumnCount()];
File dirPath = new File(drf.getTableFile()).getParentFile();
File fcsfile = new File(dirPath, "fcs");
if (!fcsfile.canRead()) {
fcsfile = new File(dirPath, "fcs.");
}
DcwRecordFile fcs = new DcwRecordFile(fcsfile.toString());
List l = new ArrayList(fcs.getColumnCount());
String tableName = drf.getTableName();