if (args.length > 1) {
nextarg:
for (int i = 1; i < args.length; i++) {
String name = args[i];
for (int tableId = 0; tableId < Table.MAX_NUMBER; tableId++) {
Table table = file.getTable(tableId);
if ((table.rows > 0) && name.equals(table.getTableName())) {
file.dump(System.out, table);
System.out.println();
continue nextarg;
}
}