[유치수] [NOBTS] call stack 테스트를 위한 method modifier 추가.

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@1121 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Chisu Yu
2013-01-28 08:37:00 +00:00
parent 6e920c7815
commit d48720d691
5 changed files with 103 additions and 4 deletions
@@ -443,4 +443,12 @@ public class JavaAssistClass implements InstrumentClass {
}
return null;
}
public CtMethod[] getDeclaredMethods() {
return ctClass.getDeclaredMethods();
}
public boolean isInterceptable() {
return !ctClass.isInterface() && !ctClass.isAnnotation() && !ctClass.isModified();
}
}