Tree in scala swing
I want to use a tree in my Scala swing application, but the component isn't available in the API. Does a wrapper of JTree exists ? If not, do you have any advice for making it ? Thanks Even though you can use directly the Java JTree in your scala program, as illustrated by this thread , there is a debate about including a Scala wrapper of a JTree. The following common usages are tedious, verbose, non-type safe, and/or require unsafe null usage: Creating a custom tree model, backed by your own user objects -- the Scala Swing way would be to have a standard typesafe Map behind it Events - there