mirror of
https://github.com/FranzHaidnor/haidnorJVM.git
synced 2026-03-14 06:03:50 +08:00
update
This commit is contained in:
21
src/main/java/haidnor/jvm/rtda/KlassMethod.java
Normal file
21
src/main/java/haidnor/jvm/rtda/KlassMethod.java
Normal file
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user