Package org.eclipse.swt.events
Class ExpandAdapter
java.lang.Object
org.eclipse.swt.events.ExpandAdapter
- All Implemented Interfaces:
- ExpandListener
This adapter class provides default implementations for the methods described
 by the 
ExpandListener interface.
 
 Classes that wish to deal with ExpandEvents can extend this
 class and override only the methods which they are interested in.
 
- Since:
- 1.2
- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidSent when an item is collapsed.voidSent when an item is expanded.
- 
Constructor Details- 
ExpandAdapterpublic ExpandAdapter()
 
- 
- 
Method Details- 
itemCollapsedSent when an item is collapsed. The default behavior is to do nothing.- Specified by:
- itemCollapsedin interface- ExpandListener
- Parameters:
- e- an event containing information about the operation
 
- 
itemExpandedSent when an item is expanded. The default behavior is to do nothing.- Specified by:
- itemExpandedin interface- ExpandListener
- Parameters:
- e- an event containing information about the operation
 
 
-