public abstract class ControlAdapter extends Object implements ControlListener
ControlListener
interface.
Classes that wish to deal with ControlEvent
s can
extend this class and override only the methods which they are
interested in.
An alternative to this class are the static helper methods
ControlListener.controlMovedAdapter(java.util.function.Consumer)
and
ControlListener.controlResizedAdapter(java.util.function.Consumer)
,
which accept a lambda expression or a method reference that implements the event consumer.
Constructor and Description |
---|
ControlAdapter() |
Modifier and Type | Method and Description |
---|---|
void |
controlMoved(ControlEvent e)
Sent when the location (x, y) of a control changes relative
to its parent (or relative to the display, for
Shell s). |
void |
controlResized(ControlEvent e)
Sent when the size (width, height) of a control changes.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
controlMovedAdapter, controlResizedAdapter
public void controlMoved(ControlEvent e)
Shell
s).
The default behavior is to do nothing.controlMoved
in interface ControlListener
e
- an event containing information about the movepublic void controlResized(ControlEvent e)
controlResized
in interface ControlListener
e
- an event containing information about the resize
Copyright (c) 2000, 2018 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.