com.bulletphysics.linearmath
Class CProfileIterator

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

public class CProfileIterator
extends Object

Iterator to navigate through profile tree.


Method Summary
 void enterChild(int index)
          Make the given child the new parent.
 void enterParent()
          Make the current parent's parent the new parent.
 void first()
           
 String getCurrentName()
           
 String getCurrentParentName()
           
 int getCurrentParentTotalCalls()
           
 float getCurrentParentTotalTime()
           
 int getCurrentTotalCalls()
           
 float getCurrentTotalTime()
           
 boolean isDone()
           
 boolean isRoot()
           
 void next()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

first

public void first()

next

public void next()

isDone

public boolean isDone()

isRoot

public boolean isRoot()

enterChild

public void enterChild(int index)
Make the given child the new parent.


enterParent

public void enterParent()
Make the current parent's parent the new parent.


getCurrentName

public String getCurrentName()

getCurrentTotalCalls

public int getCurrentTotalCalls()

getCurrentTotalTime

public float getCurrentTotalTime()

getCurrentParentName

public String getCurrentParentName()

getCurrentParentTotalCalls

public int getCurrentParentTotalCalls()

getCurrentParentTotalTime

public float getCurrentParentTotalTime()