TreeAdapter

This adapter class provides default implementations for the methods described by the <code>TreeListener</code> interface. <p> Classes that wish to deal with <code>TreeEvent</code>s can extend this class and override only the methods which they are interested in. </p>

@see TreeListener @see TreeEvent @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>

Members

Functions

treeCollapsed
void treeCollapsed(TreeEvent e)

Sent when a tree branch is collapsed. The default behavior is to do nothing.

treeExpanded
void treeExpanded(TreeEvent e)

Sent when a tree branch is expanded. The default behavior is to do nothing.

Inherited Members

From TreeListener

treeCollapsed
void treeCollapsed(TreeEvent e)

Sent when a tree branch is collapsed.

treeExpanded
void treeExpanded(TreeEvent e)

Sent when a tree branch is expanded.

Meta