All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codehaus.groovy.classgen.genArrays.groovy Maven / Gradle / Ivy

There is a newer version: 3.0.22
Show 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..




© 2015 - 2024 Weber Informatics LLC | Privacy Policy