Package org.eclipse.swt.events
Class ControlAdapter
java.lang.Object
org.eclipse.swt.events.ControlAdapter
- All Implemented Interfaces:
- ControlListener
This adapter class provides default implementations for the
 methods described by the 
ControlListener interface.
 
 Classes that wish to deal with ControlEvents can
 extend this class and override only the methods which they are
 interested in.
 
- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidSent when the location (x, y) of a control changes relative to its parent (or relative to the display, forShells).voidSent when the size (width, height) of a control changes.
- 
Constructor Details- 
ControlAdapterpublic ControlAdapter()
 
- 
- 
Method Details- 
controlMovedSent when the location (x, y) of a control changes relative to its parent (or relative to the display, forShells). The default behavior is to do nothing.- Specified by:
- controlMovedin interface- ControlListener
- Parameters:
- e- an event containing information about the move
 
- 
controlResizedSent when the size (width, height) of a control changes. The default behavior is to do nothing.- Specified by:
- controlResizedin interface- ControlListener
- Parameters:
- e- an event containing information about the resize
 
 
-