(Tuple t, String[] input)
| 132 | } |
| 133 | |
| 134 | static public Tuple loadTuple(Tuple t, String[] input) throws ExecException { |
| 135 | for (int i = 0; i < input.length; i++) { |
| 136 | t.set(i, input[i]); |
| 137 | } |
| 138 | return t; |
| 139 | } |
| 140 | |
| 141 | static public Tuple loadTuple(Tuple t, DataByteArray[] input) throws ExecException { |
| 142 | for (int i = 0; i < input.length; i++) { |
no test coverage detected