org.codehaus.groovy.classgen.genArrays.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy Show documentation
Show all versions of groovy Show documentation
Groovy: A powerful, dynamic language for the JVM
The newest version!
package org.codehaus.groovy.classgen
print """
public class ArrayUtil {
${genMethods()}
}
"""
def genMethods () {
def res = ""
for (i in 1..250)
res += "\n\n" + genMethod (i)
res
}
def genMethod (int paramNum) {
def res = "public static Object [] createArray ("
for (k in 0..