org.eclipse.swt.events

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Eclipse » swt » org.eclipse.swt.events 
org.eclipse.swt.events
Package-level Javadoc SWT typed listener support.

Package Specification

This package provides the typed events and listener interfaces and, where appropriate, matching adapter classes which make up the "high level" typed listener support provided by SWT.

For contrast, see also the untyped listener support provided by class org.eclipse.swt.widgets.Event and interface org.eclipse.swt.widgets.Listener, and the addListener and removeListener methods in class org.eclipse.swt.widgets.Widget.

Java Source File NameTypeComment
ArmEvent.javaClass Instances of this class are sent as a result of a widget such as a menu item being armed.
ArmListener.javaInterface Classes which implement this interface provide a method that deals with the event that is generated when a widget, such as a menu item, is armed.

After creating an instance of a class that implements this interface it can be added to a widget using the addArmListener method and removed using the removeArmListener method.

ControlAdapter.javaClass This adapter class provides default implementations for the methods described by the ControlListener interface.
ControlEvent.javaClass Instances of this class are sent as a result of controls being moved or resized.
ControlListener.javaInterface Classes which implement this interface provide methods that deal with the events that are generated by moving and resizing controls.
DisposeEvent.javaClass Instances of this class are sent as a result of widgets being disposed.
DisposeListener.javaInterface Classes which implement this interface provide a method that deals with the event that is generated when a widget is disposed.

After creating an instance of a class that implements this interface it can be added to a widget using the addDisposeListener method and removed using the removeDisposeListener method.

DragDetectEvent.javaClass Instances of this class are sent as a result of a drag gesture.
DragDetectListener.javaInterface Classes which implement this interface provide methods that deal with the events that are generated when a drag gesture is detected.

After creating an instance of a class that implements this interface it can be added to a control using the addDragDetectListener method and removed using the removeDragDetectListener method.

ExpandAdapter.javaClass This adapter class provides default implementations for the methods described by the ExpandListener interface.
ExpandEvent.javaClass Instances of this class are sent as a result of ExpandItems being expanded or collapsed.
ExpandListener.javaInterface Classes which implement this interface provide methods that deal with the expanding and collapsing of ExpandItems.

After creating an instance of a class that implements this interface it can be added to a ExpandBar control using the addExpandListener method and removed using the removeExpandListener method.

FocusAdapter.javaClass This adapter class provides default implementations for the methods described by the FocusListener interface.
FocusEvent.javaClass Instances of this class are sent as a result of widgets gaining and losing focus.
FocusListener.javaInterface Classes which implement this interface provide methods that deal with the events that are generated as controls gain and lose focus.

After creating an instance of a class that implements this interface it can be added to a control using the addFocusListener method and removed using the removeFocusListener method.

HelpEvent.javaClass Instances of this class are sent as a result of help being requested for a widget.
HelpListener.javaInterface Classes which implement this interface provide a method that deals with the event that is generated when help is requested for a control, typically when the user presses F1.

After creating an instance of a class that implements this interface it can be added to a control using the addHelpListener method and removed using the removeHelpListener method.

KeyAdapter.javaClass This adapter class provides default implementations for the methods described by the KeyListener interface.
KeyEvent.javaClass Instances of this class are sent as a result of keys being pressed and released on the keyboard.

When a key listener is added to a control, the control will take part in widget traversal.

KeyListener.javaInterface Classes which implement this interface provide methods that deal with the events that are generated as keys are pressed on the system keyboard.

After creating an instance of a class that implements this interface it can be added to a control using the addKeyListener method and removed using the removeKeyListener method.

MenuAdapter.javaClass This adapter class provides default implementations for the methods described by the MenuListener interface.
MenuDetectEvent.javaClass Instances of this class are sent whenever the platform- specific trigger for showing a context menu is detected.
MenuDetectListener.javaInterface Classes which implement this interface provide methods that deal with the events that are generated when the platform-specific trigger for showing a context menu is detected.
MenuEvent.javaClass Instances of this class are sent as a result of menus being shown and hidden.
MenuListener.javaInterface Classes which implement this interface provide methods that deal with the hiding and showing of menus.

After creating an instance of a class that implements this interface it can be added to a menu using the addMenuListener method and removed using the removeMenuListener method.

ModifyEvent.javaClass Instances of this class are sent as a result of text being modified.
ModifyListener.javaInterface Classes which implement this interface provide a method that deals with the events that are generated when text is modified.

After creating an instance of a class that implements this interface it can be added to a text widget using the addModifyListener method and removed using the removeModifyListener method.

MouseAdapter.javaClass This adapter class provides default implementations for the methods described by the MouseListener interface.
MouseEvent.javaClass Instances of this class are sent whenever mouse related actions occur.
MouseListener.javaInterface Classes which implement this interface provide methods that deal with the events that are generated as mouse buttons are pressed.

After creating an instance of a class that implements this interface it can be added to a control using the addMouseListener method and removed using the removeMouseListener method.

MouseMoveListener.javaInterface Classes which implement this interface provide a method that deals with the events that are generated as the mouse pointer moves.

After creating an instance of a class that implements this interface it can be added to a control using the addMouseMoveListener method and removed using the removeMouseMoveListener method.

MouseTrackAdapter.javaClass This adapter class provides default implementations for the methods described by the MouseTrackListener interface.
MouseTrackListener.javaInterface Classes which implement this interface provide methods that deal with the events that are generated as the mouse pointer passes (or hovers) over controls.

After creating an instance of a class that implements this interface it can be added to a control using the addMouseTrackListener method and removed using the removeMouseTrackListener method.

MouseWheelListener.javaInterface Classes which implement this interface provide a method that deals with the event that is generated as the mouse wheel is scrolled.

After creating an instance of a class that implements this interface it can be added to a control using the addMouseWheelListener method and removed using the removeMouseWheelListener method.

PaintEvent.javaClass Instances of this class are sent as a result of visible areas of controls requiring re-painting.
PaintListener.javaInterface Classes which implement this interface provide methods that deal with the events that are generated when the control needs to be painted.
SelectionAdapter.javaClass This adapter class provides default implementations for the methods described by the SelectionListener interface.
SelectionEvent.javaClass Instances of this class are sent as a result of widgets being selected.
SelectionListener.javaInterface Classes which implement this interface provide methods that deal with the events that are generated when selection occurs in a control.

After creating an instance of a class that implements this interface it can be added to a control using the addSelectionListener method and removed using the removeSelectionListener method.

ShellAdapter.javaClass This adapter class provides default implementations for the methods described by the ShellListener interface.
ShellEvent.javaClass Instances of this class are sent as a result of operations being performed on shells.
ShellListener.javaInterface Classes which implement this interface provide methods that deal with changes in state of Shells.

After creating an instance of a class that implements this interface it can be added to a shell using the addShellListener method and removed using the removeShellListener method.

TraverseEvent.javaClass Instances of this class are sent as a result of widget traversal actions.

The traversal event allows fine control over keyboard traversal in a control both to implement traversal and override the default traversal behavior defined by the system.

TraverseListener.javaInterface Classes which implement this interface provide a method that deals with the events that are generated when a traverse event occurs in a control.

After creating an instance of a class that implements this interface it can be added to a control using the addTraverseListener method and removed using the removeTraverseListener method.

TreeAdapter.javaClass This adapter class provides default implementations for the methods described by the TreeListener interface.
TreeEvent.javaClass Instances of this class are sent as a result of trees being expanded and collapsed.
TreeListener.javaInterface Classes which implement this interface provide methods that deal with the expanding and collapsing of tree branches.

After creating an instance of a class that implements this interface it can be added to a tree control using the addTreeListener method and removed using the removeTreeListener method.

TypedEvent.javaClass This is the super class for all typed event classes provided by SWT.
VerifyEvent.javaClass
VerifyListener.javaInterface Classes which implement this interface provide a method that deals with the events that are generated when text is about to be modified.

After creating an instance of a class that implements this interface it can be added to a text control using the addVerifyListener method and removed using the removeVerifyListener method.

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.