(int row)
| 3213 | |
| 3214 | |
| 3215 | public long[] getLongRow(int row) { |
| 3216 | long[] outgoing = new long[columns.length]; |
| 3217 | for (int col = 0; col < columns.length; col++) { |
| 3218 | outgoing[col] = getLong(row, col); |
| 3219 | } |
| 3220 | return outgoing; |
| 3221 | } |
| 3222 | |
| 3223 | |
| 3224 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |