org.eclipse.swt.dnd

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.dnd 
org.eclipse.swt.dnd
Package-level Javadoc SWT Drag and Drop support.

Package Specification

This package contains the classes which make up the public API of the SWT Drag and Drop support.
Java Source File NameTypeComment
ByteArrayTransfer.javaClass The class ByteArrayTransfer provides a platform specific mechanism for converting a java byte[] to a platform specific representation of the byte array and vice versa.
Clipboard.javaClass The Clipboard provides a mechanism for transferring data from one application to another or within an application.
ClipboardProxy.javaClass
DND.javaClass Class DND contains all the constants used in defining a DragSource or a DropTarget.
DNDEvent.javaClass
DNDListener.javaClass
DragSource.javaClass DragSource defines the source object for a drag and drop transfer.

IMPORTANT: This class is not intended to be subclassed.

A drag source is the object which originates a drag and drop operation.

DragSourceAdapter.javaClass This adapter class provides default implementations for the methods described by the DragSourceListener interface.
DragSourceEffect.javaClass This class provides default implementations to display a drag source effect during a drag and drop operation.
DragSourceEvent.javaClass The DragSourceEvent contains the event information passed in the methods of the DragSourceListener.
DragSourceListener.javaInterface The DragSourceListener class provides event notification to the application for DragSource events.

When the user drops data on a DropTarget, the application which defines the DragSource must provide the dropped data by implementing dragSetData.

DropTarget.javaClass Class DropTarget defines the target object for a drag and drop transfer. IMPORTANT: This class is not intended to be subclassed.

This class identifies the Control over which the user must position the cursor in order to drop the data being transferred.

DropTargetAdapter.javaClass This adapter class provides default implementations for the methods described by the DropTargetListener interface.
DropTargetEffect.javaClass This class provides a default drag under effect during a drag and drop.
DropTargetEvent.javaClass The DropTargetEvent contains the event information passed in the methods of the DropTargetListener.
DropTargetListener.javaInterface The DropTargetListener class provides event notification to the application for DropTarget events.

As the user moves the cursor into, over and out of a Control that has been designated as a DropTarget, events indicate what operation can be performed and what data can be transferred if a drop where to occur at that point. The application can respond to these events and change the type of data that will be dropped by modifying event.currentDataType, or change the operation that will be performed by modifying the event.detail field or stop any drop from happening on the current target by setting the event.detail field to DND_DROP_NONE.

When the user causes a drop to happen by releasing the mouse over a valid drop target, the application has one last chance to change the data type of the drop through the DropAccept event.

FileTransfer.javaClass The class FileTransfer provides a platform specific mechanism for converting a list of files represented as a java String[] to a platform specific representation of the data and vice versa.
HTMLTransfer.javaClass The class HTMLTransfer provides a platform specific mechanism for converting text in HTML format represented as a java String to a platform specific representation of the data and vice versa.
OleEnumFORMATETC.javaClass
RTFTransfer.javaClass The class RTFTransfer provides a platform specific mechanism for converting text in RTF format represented as a java String to a platform specific representation of the data and vice versa.
TableDragSourceEffect.javaClass This class provides default implementations to display a source image when a drag is initiated from a Table.
TableDropTargetEffect.javaClass This class provides a default drag under effect (eg.
TextTransfer.javaClass The class TextTransfer provides a platform specific mechanism for converting plain text represented as a java String to a platform specific representation of the data and vice versa.
Transfer.javaClass Transfer provides a mechanism for converting between a java representation of data and a platform specific representation of data and vice versa.
TransferData.javaClass The TransferData class is a platform specific data structure for describing the type and the contents of data being converted by a transfer agent.

As an application writer, you do not need to know the specifics of TransferData.

TreeDragSourceEffect.javaClass This class provides default implementations to display a source image when a drag is initiated from a Tree.
TreeDropTargetEffect.javaClass This class provides a default drag under effect (eg.
URLTransfer.javaClass The class URLTransfer provides a platform specific mechanism for converting text in URL format represented as a java String[] to a platform specific representation of the data and vice versa.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.