(int row)
| 3641 | |
| 3642 | |
| 3643 | public String[] getStringRow(int row) { |
| 3644 | String[] outgoing = new String[columns.length]; |
| 3645 | for (int col = 0; col < columns.length; col++) { |
| 3646 | outgoing[col] = getString(row, col); |
| 3647 | } |
| 3648 | return outgoing; |
| 3649 | } |
| 3650 | |
| 3651 | |
| 3652 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |
no test coverage detected