org.snapscript.bridge.generate.ConstructorArguments Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap-all Show documentation
Show all versions of snap-all Show documentation
Dynamic scripting for the JVM
package org.snapscript.bridge.generate;
public class ConstructorArguments {
private final Object[] arguments;
private final Class[] types;
public ConstructorArguments(Class[] types, Object[] arguments) {
this.arguments = arguments;
this.types = types;
}
public Object[] getArguments() {
return arguments;
}
public Class[] getTypes() {
return types;
}
}