(int row)
| 3138 | |
| 3139 | |
| 3140 | public int[] getIntRow(int row) { |
| 3141 | int[] outgoing = new int[columns.length]; |
| 3142 | for (int col = 0; col < columns.length; col++) { |
| 3143 | outgoing[col] = getInt(row, col); |
| 3144 | } |
| 3145 | return outgoing; |
| 3146 | } |
| 3147 | |
| 3148 | |
| 3149 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |