All Packages Class Hierarchy This Package Previous Next Index
Class com.bulletproof.gui.TreeBranch
java.lang.Object
|
+----com.bulletproof.gui.TreeBranch
- public class TreeBranch
- extends Object
Class TreeBranch represents a item in a Tree.
-
actualValue
- Actual value.
-
children
- The children indexes represented as 2 bytes in the range 0-16384.
-
displayValue
- Displayed value.
-
expanded
- Expanded flag.
-
index
- The index number for this branch.
-
parentIndex
- The index number for parent of this branch.
-
selected
- Selected flag.
-
TreeBranch(char[])
- Create a new list item.
-
TreeBranch(String, String, boolean, boolean, int, int)
- Create a new list item.
-
addChild(int)
-
-
getChildren()
-
-
toString()
-
displayValue
public String displayValue
- Displayed value.
actualValue
public String actualValue
- Actual value.
selected
public boolean selected
- Selected flag.
expanded
public boolean expanded
- Expanded flag.
index
public int index
- The index number for this branch.
parentIndex
public int parentIndex
- The index number for parent of this branch.
children
public byte children[]
- The children indexes represented as 2 bytes in the range 0-16384.
TreeBranch
public TreeBranch(String displayValue,
String actualValue,
boolean selected,
boolean expanded,
int index,
int parentIndex)
- Create a new list item.
TreeBranch
public TreeBranch(char entry[])
- Create a new list item.
toString
public String toString()
- Overrides:
- toString in class Object
getChildren
public int[] getChildren()
addChild
public void addChild(int childIndex)
All Packages Class Hierarchy This Package Previous Next Index