@return a Type array of length len populated with Type.INT_TYPE
(int len)
| 12 | * @return a Type array of length len populated with Type.INT_TYPE |
| 13 | */ |
| 14 | public static Type[] getTypes(int len) { |
| 15 | Type[] types = new Type[len]; |
| 16 | for (int i = 0; i < len; ++i) |
| 17 | types[i] = Type.INT_TYPE; |
| 18 | return types; |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * @return a String array of length len populated with the (possibly null) strings in val, |