mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-17 00:36:02 +10:00
method의 parameter의 variablename을 획득할수 있도록 수정함. 단 디버그 컴파일 시만 간능함. git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@871 84d0f5b1-2673-498c-a247-62c4ff18d310
28 lines
462 B
Java
28 lines
462 B
Java
package com.profiler.interceptor;
|
|
|
|
import java.lang.reflect.Method;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public interface MethodDescriptor {
|
|
String getMethodName();
|
|
|
|
String getClassName();
|
|
|
|
String getSimpleClassName();
|
|
|
|
String[] getParameterTypes();
|
|
|
|
String[] getSimpleParameterTypes();
|
|
|
|
String[] getParameterVariableName();
|
|
|
|
|
|
String getParameterDescriptor();
|
|
|
|
String getSimpleParameterDescriptor();
|
|
|
|
int getLineNumber();
|
|
}
|