Package com.bw.jtools.profiling
Class CalleeProfilingInformation
- java.lang.Object
-
- com.bw.jtools.profiling.ProfilingInformation
-
- com.bw.jtools.profiling.CalleeProfilingInformation
-
public final class CalleeProfilingInformation extends ProfilingInformation
Holds information of a callee-relation.
Each instance represents a method that is called during an active other method.
-
-
Field Summary
Fields Modifier and Type Field Description MethodProfilingInformationcalleeThe called method.-
Fields inherited from class com.bw.jtools.profiling.ProfilingInformation
calls, maxMeasurement, minMeasurement, recursiveCalls, sum
-
-
Constructor Summary
Constructors Constructor Description CalleeProfilingInformation(MethodProfilingInformation callee)C'tor to create a new callee information.
-
Method Summary
-
Methods inherited from class com.bw.jtools.profiling.ProfilingInformation
addCall, clear
-
-
-
-
Field Detail
-
callee
public final MethodProfilingInformation callee
The called method.
-
-
Constructor Detail
-
CalleeProfilingInformation
public CalleeProfilingInformation(MethodProfilingInformation callee)
C'tor to create a new callee information.- Parameters:
callee- The method information of the callee.
-
-