Skip to main content

where is the Tree in java.util.Collections?

Posted by ntruchsess on October 19, 2007 at 9:09 AM EDT

I allways wandered why there's no generic api defined for trees under the umbrella of java.util.Collections api. And every time I needet to handle tree-structured data I ended up writing quite the same code with slight modifications once again. So I recently started to create an API that is both generic and powerfull enough to never again write a line of code just to handle objects that are organized in graphs.

Please read through the javadoc and tell me your thoughts!

Related Topics >>

Comments

Looks good. I was surprised

Looks good. I was surprised that Collections was missing trees too.

Where can I download the source Norbert?