/** * @(#) GL4JavaReflections.java */ package gl4java; import java.lang.System; import java.lang.String; import java.lang.reflect.*; /** * The function-declaration holder ! * * @version 1.00, 12. Novemeber 1999 * @author Sven Goethel * */ public class GL4JavaReflections implements Cloneable { public Object methodClassInstance=null; public Class type=null; public String methodName=null; public Class[] argList=null; public GL4JavaReflections ( Object methodClassInstance, Class type, String methodName, Class[] argList ) { this.methodClassInstance=methodClassInstance; this.type=type; this.methodName=methodName; this.argList=argList; } protected Object clone() throws CloneNotSupportedException { int i; Class[] args = new Class[argList.length]; for(i=0; i