I'm using Netbeans GUI interface for creating the Swing components.
I've added a JTree to the panel. It appears to be multi-select by default.
Anybody know how in Netbeans I change this to a single-select? I'm not seeing anything exposed in the properties.
Full Answer: Right after "initComponents()" in the constructor, I added the following:
TreeSelectionModel model = jTreeInput.getSelectionModel();
model.setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
"jTreeInput" is the name of my jTree.