(Tuple[] t)
| 236 | } |
| 237 | |
| 238 | static public DataBag createBag(Tuple[] t) |
| 239 | { |
| 240 | DataBag b = mBagFactory.newDefaultBag(); |
| 241 | for(int i = 0; i < t.length; i++)b.add(t[i]); |
| 242 | return b; |
| 243 | } |
| 244 | |
| 245 | static public<T> DataBag createBagOfOneColumn(T[] input) throws ExecException { |
| 246 | DataBag result = mBagFactory.newDefaultBag(); |
no test coverage detected