ProfileNodepublic 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.String | getLabel()
return mLabel;
| public boolean | isParent()
return mIsParent;
| public boolean | isRecursive()
return mIsRecursive;
|
|