Interface MethodProfilingNode

All Known Implementing Classes:
MethodProfilingNodeImpl

public interface MethodProfilingNode
This class represents a node in the hierarchy of called and calling methods.
  • Method Details

    • getMethodName

      String getMethodName()
      Gets the name of this method.
      Returns:
      the method name.
    • getWeight

      double getWeight()
      Gets the relative weight of the method in this call tree.
      Returns:
      the method weight, as a percentage.
    • getCalledMethods

      MethodProfilingNode[] getCalledMethods()
      Gets the methods that this method calls in this hierarchy.
      Returns:
      an array of methods.
    • getCallingMethods

      MethodProfilingNode[] getCallingMethods()
      Gets an array of methods that have called this method in this hierarchy.
      Returns:
      an array of methods.