Hi,
I am writing this application in Java, where I have a JTree
on the left of the JFrame
, and the item selected in the JTree
determines what appears on the right. This is similar to Edit --> Preferences
in Thunderbird, and several other applications' preferences.
Anyhow the main difference is that in my app the stuff on the right is dynamic, and needs to be generated at run time using input from a file.
What I am after is various ways in which this can be accomplished, code snippets or existing frameworks / libraries if they exist.
The input file needs to be something higher level than the sort of XML generated during Serialization. No output capability is required.
Thanks