mirror of
https://github.com/FranzHaidnor/haidnorJVM.git
synced 2026-03-14 06:03:50 +08:00
22 lines
354 B
Java
22 lines
354 B
Java
package haidnor.jvm.rtda;
|
|
|
|
import org.apache.bcel.classfile.Method;
|
|
|
|
/**
|
|
* 类元信息方法
|
|
*
|
|
* @author wang xiang
|
|
*/
|
|
public class KlassMethod {
|
|
|
|
public final Klass aKlass;
|
|
|
|
public final Method javaMethod;
|
|
|
|
public KlassMethod(Klass klass, Method javaMethod) {
|
|
this.aKlass = klass;
|
|
this.javaMethod = javaMethod;
|
|
}
|
|
|
|
}
|