org.wings.event

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 » Swing Library » wings3 » org.wings.event 
org.wings.event
Contains events and event listeners that provided by wingS to be used in your application code.
Java Source File NameTypeComment
ExitVetoException.javaClass For vetoing an application triggered session exit.
InvalidLowLevelEvent.javaClass A request to an low level event was dropped due to an outdated epoch of this request.
SAjaxChangeListener.javaInterface A listener to react on changes of Ajax-requests.
SComponentAdapter.javaClass An abstract adapter class for receiving component events. The methods in this class are empty.
SComponentDropListener.javaInterface The Listener interface for receiving drop events generated by the drag and drop API.
SComponentEvent.javaClass A low-level event which indicates that a component moved, changed size, or changed visibility (also, the root class for the other component-level events).

Component events are provided for notification purposes ONLY; WingS will automatically handle component moves and resizes internally so that GUI layout works properly regardless of whether a program is receiving these events or not.

In addition to serving as the base class for other component-related events (InputEvent, FocusEvent, WindowEvent, ContainerEvent), this class defines the events that indicate changes in a component's size, position, or visibility.

This low-level event is generated by a component object (such as a SList) when the component is moved, resized, rendered invisible, or made visible again.

SComponentListener.javaInterface The listener interface for receiving component events. The class that is interested in processing a component event either implements this interface (and all the methods it contains) or extends the abstract ComponentAdapter class (overriding only the methods of interest). The listener object created from that class is then registered with a component using the component's addComponentListener method.
SContainerEvent.javaClass A container event, that is issued, whenever a component is added or removed from an container.
SContainerListener.javaInterface This listener is called on modifications on a Container.
SDocumentAdapter.javaClass Empty default implementation of SDocumentListener .
SDocumentEvent.javaClass A document event fire on any document change (i.e.
SDocumentListener.javaInterface Listener on org.wings.STextComponent s to be notified on updates on the components text (document).
SExitEvent.javaClass Event object fired to SExitListener .
SExitListener.javaInterface Exit listeners can be attached to the current session and will get notified when the session is closed. They may throw an ExitVetoException to indicate that they do not want to allow the session destroying.
SInternalFrameAdapter.javaClass Empty default implementation of SInternalFrameListener .
SInternalFrameEvent.javaClass SInternalFrameEvent: an AWTEvent which adds support for SInternalFrame objects as the event source.
SInternalFrameListener.javaInterface The listener interface for receiving internal frame events.
SInvalidLowLevelEventListener.javaInterface This interface is used to notify the application about dropped dispatches due to invalid (old) Epoch ids. Can be used to i.e.
SMouseAdapter.javaClass An abstract adapter class for receiving mouse events.
SMouseEvent.javaClass A 'virtual' mouse event.
SMouseListener.javaInterface A listener to react on 'virtual' mouse clicks.
SParentFrameEvent.javaClass This event is fired if the parent frame of a SComponent is modified.
SParentFrameListener.javaInterface This Listener is called when a component's parent frame reference is updated i.e.
SRenderEvent.javaClass Event fired on render events in SRenderListener .
SRenderListener.javaInterface Render listener are called during the rendering process of a component.
SRequestEvent.javaClass A request event meaning aspecific phase that has been reached during the request processing. Possible states are defined as constants in this class (i.e.
SRequestListener.javaInterface Request listeners can be registered in the current org.wings.session.Session and will receive different events during the various request phases on processing an HTTP request for this session.
STableColumnModelEvent.javaClass
STableColumnModelListener.javaInterface
SViewportChangeEvent.javaClass SViewportChangeEvent is used to notify interested parties that the viewport of a Scrollable (the source) has changed either horizontally or vertically.
SViewportChangeListener.javaInterface Defines an object which listens for SViewportChangeEvents.
WeakRequestListenerProxy.javaClass A SRequestListener implementation, which uses WeakReference.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.