| java.lang.Object org.netbeans.lib.profiler.server.ProfilerActivate15
ProfilerActivate15 | public class ProfilerActivate15 (Code) | | Class that contains the premain() method, needed by the java.lang.instrument Java agent
mechanism, that we use for "attach on startup" operation with JDK 1.5.
author: Tomas Hurka author: Misha Dmitriev |
Method Summary | |
public static void | agentmain(String agentArgs, Instrumentation inst) | public static void | premain(String agentArgs, Instrumentation inst) This method is called after the VM has been initialized, but before the TA's main() method.
A single arguments string passed to it is the "options" string specified to the -javaagent
argument, as java -javaagent:jarpath=options. |
premain | public static void premain(String agentArgs, Instrumentation inst)(Code) | | This method is called after the VM has been initialized, but before the TA's main() method.
A single arguments string passed to it is the "options" string specified to the -javaagent
argument, as java -javaagent:jarpath=options. It should contain the communication port number
and optional timeout separated by a comma.
|
|
|