org.unlaxer.compiler.ClassAndByteCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinyExpression Show documentation
Show all versions of tinyExpression Show documentation
TinyExpression implemented with Unlaxer
package org.unlaxer.compiler;
public class ClassAndByteCode{
public final Class> clazz;
public final byte[] bytes;
public ClassAndByteCode(Class> clazz, byte[] bytes) {
super();
this.clazz = clazz;
this.bytes = bytes;
}
}