| java.lang.Object org.netbeans.lib.profiler.results.cpu.FlatProfileContainer org.netbeans.lib.profiler.results.cpu.FlatProfileContainerBacked
FlatProfileContainerBacked | public class FlatProfileContainerBacked extends FlatProfileContainer (Code) | | Container for CPU profiling results in the flat profile form. A concrete subclass of FlatProfileContainer,
where the data is backed by CPUCCTContainer.
author: Misha Dmitriev |
Constructor Summary | |
public | FlatProfileContainerBacked(CPUCCTContainer cctContainer, long[] timeInMcs0, long[] timeInMcs1, int[] nInvocations, int nMethods) The data passed to this constructor may contain some zero-invocation rows. |
FlatProfileContainerBacked | public FlatProfileContainerBacked(CPUCCTContainer cctContainer, long[] timeInMcs0, long[] timeInMcs1, int[] nInvocations, int nMethods)(Code) | | The data passed to this constructor may contain some zero-invocation rows. That's because the size of passed arrays
is equal to the number of currently instrumented methods, but in general not all of the methods may be invoked even
once at an arbitrary moment.
Parameters: cctContainer - The CPU results Parameters: timeInMcs0 - Array of Absolute timer values for each method - always used Parameters: timeInMcs1 - Array of CPU timer values for each method - optional, may be null Parameters: nInvocations - Array of number of invocations for each method Parameters: nMethods - Total number of profiled methods - length of the provided arrays |
getMethodNameAtRow | public String getMethodNameAtRow(int row)(Code) | | |
getWholeGraphNetTime0 | public double getWholeGraphNetTime0()(Code) | | |
getWholeGraphNetTime1 | public double getWholeGraphNetTime1()(Code) | | |
|
|