| |
|
| java.lang.Object org.netbeans.lib.profiler.wireprotocol.Command org.netbeans.lib.profiler.wireprotocol.MethodLoadedCommand
MethodLoadedCommand | public class MethodLoadedCommand extends Command (Code) | | Command that is issued by back end when the option to instrument methods invoked via reflection is on,
and a given method is just about to be executed in this way.
It is only used for CPU profiling, when Eager or Lazy schemes are used (RecursiveMethodInstrumentor1 or
RecursiveMethodInstrumentor2). In total scheme, everything is handle by ClassLoadedCommand.
author: Misha Dmitriev author: Ian Formanek |
MethodLoadedCommand | public MethodLoadedCommand(String className, int classLoaderId, String methodName, String methodSignature)(Code) | | Creates new MethodLoadedCommand.
Parameters: className - name fo the class loaded Parameters: classLoaderId - id of ClassLoader that loaded the class Parameters: methodName - Name of method that is going to be invoked Parameters: methodSignature - Signature of method that is going to be invoked |
MethodLoadedCommand | MethodLoadedCommand()(Code) | | |
getClassLoaderId | public int getClassLoaderId()(Code) | | id of ClassLoader that loaded the class |
getClassName | public String getClassName()(Code) | | name fo the class loaded |
getMethodName | public String getMethodName()(Code) | | Name of method that is going to be invoked |
getMethodSignature | public String getMethodSignature()(Code) | | Signature of method that is going to be invoked |
toString | public String toString()(Code) | | Debug println of values |
|
|
|