(int row)
| 3573 | |
| 3574 | |
| 3575 | public String[] getStringRow(int row) { |
| 3576 | String[] outgoing = new String[columns.length]; |
| 3577 | for (int col = 0; col < columns.length; col++) { |
| 3578 | outgoing[col] = getString(row, col); |
| 3579 | } |
| 3580 | return outgoing; |
| 3581 | } |
| 3582 | |
| 3583 | |
| 3584 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |
no test coverage detected