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

org.unlaxer.compiler.ClassAndByteCode Maven / Gradle / Ivy

The newest version!
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy