com.waveset.util
Class CallFrame

java.lang.Object
  extended bycom.waveset.util.CallFrame
All Implemented Interfaces:
java.lang.Comparable

public class CallFrame
extends java.lang.Object
implements java.lang.Comparable

Represents an individual method in the call stack.


Field Summary
static java.lang.String code_id
           
 
Method Summary
 int compareTo(java.lang.Object obj)
          Compare to another CallNode or String(methodName) for sorting.
 boolean equals(java.lang.Object obj)
           
 java.lang.String getMethodName()
          What is the name of this method?
 int getRecursiveDepth()
          Direct recursion increments this counter.
 long getStartTime()
          When did this method begin to execute?
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

code_id

public static final java.lang.String code_id
See Also:
Constant Field Values
Method Detail

getMethodName

public java.lang.String getMethodName()
What is the name of this method?


getStartTime

public long getStartTime()
When did this method begin to execute?


getRecursiveDepth

public int getRecursiveDepth()
Direct recursion increments this counter.


toString

public java.lang.String toString()

compareTo

public int compareTo(java.lang.Object obj)
Compare to another CallNode or String(methodName) for sorting. The key is by name (case sensitive).

Specified by:
compareTo in interface java.lang.Comparable

equals

public boolean equals(java.lang.Object obj)