(int row)
| 3193 | |
| 3194 | |
| 3195 | public int[] getIntRow(int row) { |
| 3196 | int[] outgoing = new int[columns.length]; |
| 3197 | for (int col = 0; col < columns.length; col++) { |
| 3198 | outgoing[col] = getInt(row, col); |
| 3199 | } |
| 3200 | return outgoing; |
| 3201 | } |
| 3202 | |
| 3203 | |
| 3204 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |