(Tuple t, int[] input)
| 125 | // ================= |
| 126 | |
| 127 | static public Tuple loadFlatTuple(Tuple t, int[] input) throws ExecException { |
| 128 | for (int i = 0; i < input.length; i++) { |
| 129 | t.set(i, new Integer(input[i])); |
| 130 | } |
| 131 | return t; |
| 132 | } |
| 133 | |
| 134 | static public Tuple loadTuple(Tuple t, String[] input) throws ExecException { |
| 135 | for (int i = 0; i < input.length; i++) { |
no test coverage detected