Format of TreePath data
Please bear with me, I'm still new to Java and its data types.
I'm implementing a JTree object, and I need to get the items that are highlighted. I found a function called getSelectionPaths() that returns a TreePath[]. My question is, what does the string returned by the TreePath function toString() look like?
For example, let's say I have the following tree:
Root
|
|-- Foo
|
|-- Bar
|
|-- Hello
|
|-- World <-- this is the item highlighted
What will the result of toString() look like?
Thanks in advance!
-Valerie
=================================================
Valerie L. Bradley
Software Engineer
Intel Corporation
* All opinions expressed are mine and not those of my employer.

