Uses of Interface
org.eclipse.swt.events.TreeListener
-
Packages that use TreeListener Package Description org.eclipse.swt.events org.eclipse.swt.widgets -
-
Uses of TreeListener in org.eclipse.swt.events
Classes in org.eclipse.swt.events that implement TreeListener Modifier and Type Class Description class
TreeAdapter
This adapter class provides default implementations for the methods described by theTreeListener
interface.Methods in org.eclipse.swt.events that return TreeListener Modifier and Type Method Description static TreeListener
TreeListener. treeCollapsedAdapter(java.util.function.Consumer<TreeEvent> c)
Static helper method to create aTreeListener
for thetreeCollapsed(TreeEvent e)
) method, given a lambda expression or a method reference.static TreeListener
TreeListener. treeExpandedAdapter(java.util.function.Consumer<TreeEvent> c)
Static helper method to create aTreeListener
for thetreeExpanded(TreeEvent e)
) method, given a lambda expression or a method reference. -
Uses of TreeListener in org.eclipse.swt.widgets
Methods in org.eclipse.swt.widgets with parameters of type TreeListener Modifier and Type Method Description void
Tree. addTreeListener(TreeListener listener)
Adds the listener to the collection of listeners who will be notified when an item in the receiver is expanded or collapsed by sending it one of the messages defined in theTreeListener
interface.void
Tree. removeTreeListener(TreeListener listener)
Removes the listener from the collection of listeners who will be notified when items in the receiver are expanded or collapsed.
-