Does anyone know of
a way to prevent a Tree from displaying items. I have a situation where it
appears the following is
happening:
__________
___________
___________
|
| data obj
|
| some var
|
|
| TreeNode
| ----------> | myobject1 |
-------------> | myobject2 |
|
|
| |
|
|
------------------
--------------------
-------------------
myobject2shows up
as a node in the tree. Not sure why this happens.
I add myobject1
with: parentTreeNode.addTreeNode(myobject1);
Shouldn'tI have to
do the same with myobject2 in order for it to be a node?
-S

