Returns an array of row numbers. @param rowCount length of the array @return the array
(int rowCount)
| 997 | * @return the array |
| 998 | */ |
| 999 | protected static double[] getRowArray(int rowCount) { |
| 1000 | double[] rows = new double[rowCount]; |
| 1001 | for (int i = 0; i < rowCount; i++) { |
| 1002 | rows[i] = i; |
| 1003 | } |
| 1004 | return rows; |
| 1005 | } |
| 1006 | |
| 1007 | /** |
| 1008 | * Parses a String into tokens separated by a specified delimiter. A token may |
no outgoing calls
no test coverage detected