FileDocCategorySizeDatePackage
ProfileNode.javaAPI DocAndroid 1.5 API1421Wed May 06 22:41:10 BST 2009com.android.traceview

ProfileNode

public class ProfileNode extends Object

Fields Summary
private String
mLabel
private MethodData
mMethodData
private ProfileData[]
mChildren
private boolean
mIsParent
private boolean
mIsRecursive
Constructors Summary
public ProfileNode(String label, MethodData methodData, ProfileData[] children, boolean isParent, boolean isRecursive)

        mLabel = label;
        mMethodData = methodData;
        mChildren = children;
        mIsParent = isParent;
        mIsRecursive = isRecursive;
    
Methods Summary
public ProfileData[]getChildren()

        return mChildren;
    
public java.lang.StringgetLabel()

        return mLabel;
    
public booleanisParent()

        return mIsParent;
    
public booleanisRecursive()

        return mIsRecursive;