jruby/docs BETA
org.eclipse.swt.events 56
C ArmEvent
I ArmListener
C ControlAdapter
C ControlEvent
I ControlListener
C DisposeEvent
I DisposeListener
C DragDetectEvent
I DragDetectListener
C ExpandAdapter
C ExpandEvent
I ExpandListener
C FocusAdapter
C FocusEvent
I FocusListener
C GestureEvent
I GestureListener
C HelpEvent
I HelpListener
C KeyAdapter
C KeyEvent
I KeyListener
C MenuAdapter
C MenuDetectEvent
I MenuDetectListener
C MenuEvent
I MenuListener
C ModifyEvent
I ModifyListener
C MouseAdapter
C MouseEvent
I MouseListener
I MouseMoveListener
C MouseTrackAdapter
I MouseTrackListener
I MouseWheelListener
C PaintEvent
I PaintListener
C SegmentEvent
I SegmentListener
C SelectionAdapter
C SelectionEvent
I SelectionListener
C ShellAdapter
C ShellEvent
I ShellListener
C TouchEvent
I TouchListener
C TraverseEvent
I TraverseListener
C TreeAdapter
C TreeEvent
I TreeListener
C TypedEvent
C VerifyEvent
I VerifyListener
FocusAdapter — members 3
C new()
C focus_gained(e)
C focus_lost(e)

org.eclipse.swt.events.FocusAdapter

class abstract implements FocusListener 3 members

This adapter class provides default implementations for the methods described by the FocusListener interface.

Classes that wish to deal with FocusEvents can extend this class and override only the methods which they are interested in.

Constructors

new

new ( )
Java: <init>()

Instance Methods

focus_gained

focus_gained ( FocusEvent e )
Java: focusGained(org.eclipse.swt.events.FocusEvent e)

Sent when a control gets focus. The default behavior is to do nothing.

nametypedescription
eorg.eclipse.swt.events.FocusEventan event containing information about the focus change

focus_lost

focus_lost ( FocusEvent e )
Java: focusLost(org.eclipse.swt.events.FocusEvent e)

Sent when a control loses focus. The default behavior is to do nothing.

nametypedescription
eorg.eclipse.swt.events.FocusEventan event containing information about the focus change