| java.lang.Object org.netbeans.lib.profiler.client.RuntimeProfilingPoint
RuntimeProfilingPoint | public class RuntimeProfilingPoint (Code) | | Represents a Profiling point.
Its lifetime must not span across sessions.
author: Tomas Hurka author: Maros Sandor |
Inner Class :public static class HitEvent | |
Constructor Summary | |
public | RuntimeProfilingPoint(int id, String className, int line, int offset, String serverHandlerClass, String serverInfo) Creates a new profiling point.
Parameters: id - unique ID of this profiling point Parameters: className - name of the class where this profiling point is placed Parameters: line - profiling point location in the class. | public | RuntimeProfilingPoint(int id, String className, String methodName, String methodSignature, String serverHandlerClass, String serverInfo) Creates a new profiling point. |
RuntimeProfilingPoint | public RuntimeProfilingPoint(int id, String className, int line, int offset, String serverHandlerClass, String serverInfo)(Code) | | Creates a new profiling point.
Parameters: id - unique ID of this profiling point Parameters: className - name of the class where this profiling point is placed Parameters: line - profiling point location in the class. If line is positive, it is be inserted just before the line executes.If line is negative, it is inserted just after the line executes. Parameters: offset - line offset Parameters: serverHandlerClass - handles hits of this profiling point on server side (fully qualified class name) |
RuntimeProfilingPoint | public RuntimeProfilingPoint(int id, String className, String methodName, String methodSignature, String serverHandlerClass, String serverInfo)(Code) | | Creates a new profiling point.
Parameters: id - unique ID of this profiling point Parameters: className - name of the class where this profiling point is placed Parameters: methodName - name of the method where this profiling point is placed Parameters: methodSignature - signature of the method where this profiling point is placed Parameters: serverHandlerClass - handles hits of this profiling point on server side (fully qualified class name) |
getBci | public int getBci()(Code) | | |
getMethodIdx | public int getMethodIdx()(Code) | | |
getServerHandlerClass | public String getServerHandlerClass()(Code) | | |
|
|