| org.netbeans.lib.profiler.ui.cpu.CPUResUserActionsHandler
CPUResUserActionsHandler | public interface CPUResUserActionsHandler (Code) | | This interface declares actions that the user may initiate when browsing profiling results.
For example, the user may move the cursor to some method and request the tool to show its source
code, etc.
author: Ian Formanek author: Misha Dmitriev |
Method Summary | |
public void | addMethodToRoots(String className, String methodName, String methodSig) | public void | find(Object source, String findString) | public void | showReverseCallGraph(CPUResultsSnapshot snapshot, int threadId, int methodId, int view, int sortingColumn, boolean sortingOrder) | public void | showSourceForMethod(String className, String methodName, String methodSig) Display the source for the given method. | public void | showSubtreeCallGraph(CPUResultsSnapshot snapshot, CCTNode node, int view, int sortingColumn, boolean sortingOrder) | public void | viewChanged(int viewType) Called when a view type change has been initiated from within a results component and the change should perhaps
be reflected in other views / ui as well. |
showReverseCallGraph | public void showReverseCallGraph(CPUResultsSnapshot snapshot, int threadId, int methodId, int view, int sortingColumn, boolean sortingOrder)(Code) | | |
showSourceForMethod | public void showSourceForMethod(String className, String methodName, String methodSig)(Code) | | Display the source for the given method. className should never be null, but methodName and methodSig
may be null (for example, if we are viewing results at class level). In that case, just the class
source code should be displayed.
Parameters: className - The fully qualified class name in VM format ("org/profiler/Main"); Parameters: methodName - The method name Parameters: methodSig - The method signature in VM format |
viewChanged | public void viewChanged(int viewType)(Code) | | Called when a view type change has been initiated from within a results component and the change should perhaps
be reflected in other views / ui as well.
Parameters: viewType - the new view type |
|
|