javax.swing.event
Interface TreeSelectionListener
- All Superinterfaces:
- EventListener
- All Known Implementing Classes:
- javax.swing.JTree.AccessibleJTree, antlr.debug.misc.ASTFrame.MyTreeSelectionListener, javax.swing.JTree.TreeSelectionRedirector
- public interface TreeSelectionListener
- extends EventListener
Unsafe: The listener that's notified when the selection in a TreeSelectionModel
changes.
For more information and examples see
How to Write a Tree Selection Listener,
a section in The Java Tutorial.
- Version:
- 1.12 12/03/01
- Author:
- Scott Violet
- See Also:
javax.swing.tree.TreeSelectionModel
,
javax.swing.JTree
valueChanged
public void valueChanged(TreeSelectionEvent e)
- Enabled:
Called whenever the value of the selection changes.
- Parameters:
e
- the event that characterizes the change.
comments?