261262263264265266267268269270271
setPosition(1); } catch (IOException exc) { // This indicates that there are no rows return list; } VPFRow row = readRow(); while (row != null) { list.add(row); row = readRow(); }
282283284285286287288289290291292
* * @exception IOException if an error occurs */ public int readRows(VPFRow[] rows) throws IOException { int counter = 0; VPFRow row = readRow(); while ((row != null) && (counter < rows.length)) { rows[counter++] = row; row = readRow(); }