com.bulletphysics.linearmath
Class CProfileNode

java.lang.Object
  extended by com.bulletphysics.linearmath.CProfileNode

public class CProfileNode
extends java.lang.Object


Field Summary
protected  CProfileNode child
           
protected  java.lang.String name
           
protected  CProfileNode parent
           
protected  int recursionCounter
           
protected  CProfileNode sibling
           
protected  long startTime
           
protected  int totalCalls
           
protected  float totalTime
           
 
Constructor Summary
CProfileNode(java.lang.String name, CProfileNode parent)
           
 
Method Summary
 void call()
           
 void cleanupMemory()
           
 CProfileNode getChild()
           
 java.lang.String getName()
           
 CProfileNode getParent()
           
 CProfileNode getSibling()
           
 CProfileNode getSubNode(java.lang.String name)
           
 int getTotalCalls()
           
 float getTotalTime()
           
 void reset()
           
 boolean Return()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

protected java.lang.String name

totalCalls

protected int totalCalls

totalTime

protected float totalTime

startTime

protected long startTime

recursionCounter

protected int recursionCounter

parent

protected CProfileNode parent

child

protected CProfileNode child

sibling

protected CProfileNode sibling
Constructor Detail

CProfileNode

public CProfileNode(java.lang.String name,
                    CProfileNode parent)
Method Detail

getSubNode

public CProfileNode getSubNode(java.lang.String name)

getParent

public CProfileNode getParent()

getSibling

public CProfileNode getSibling()

getChild

public CProfileNode getChild()

cleanupMemory

public void cleanupMemory()

reset

public void reset()

call

public void call()

Return

public boolean Return()

getName

public java.lang.String getName()

getTotalCalls

public int getTotalCalls()

getTotalTime

public float getTotalTime()