This commit is contained in:
Volker Berlin 2018-03-20 20:33:03 +01:00
parent 0803c290c5
commit bebfbd06d3

View File

@ -61,6 +61,10 @@ public class MethodInfo {
this.classFile = classFile;
}
/**
* Get the declaring class file of the method
* @return the ClassFile
*/
public ClassFile getDeclaringClassFile() {
return classFile;
}