Uses of Class
org.eclipse.swt.dnd.Transfer
Package
Description
Provides useful building blocks used throughout JFace,
including property change events, a listener list implementation, and runtime
checked assertions.
Provides a framework for viewers, which are model-based
content adapters for SWT widgets.
SWT Drag and Drop support.
Application-level APIs for configuring and controling the Eclipse Platform User
Interface.
Classes and Interface specifications for Drag and Drop in the Eclipse Platform User Interface.
Custom widgets and controls for forms-based parts.
Provides the Common Navigator framework.
Provides reusable components for clients that need to expand on the capabilities
provided by the reference Common Navigator Resources extension.
Classes for the creation of workbench parts that integrate
with the Eclipse Platform User Interface.
Provides a framework for text editors obeying to the
desktop rules.
-
Uses of Transfer in org.eclipse.jface.util
Modifier and TypeClassDescriptionclass
A LocalSelectionTransfer may be used for drag and drop operations within the same instance of Eclipse.Modifier and TypeMethodDescriptionTransferDragSourceListener.getTransfer()
Returns theTransfer
type that this listener can provide data for.TransferDropTargetListener.getTransfer()
Returns theTransfer
type that this listener can accept a drop operation for.Transfer[]
DelegatingDragAdapter.getTransfers()
Returns theTransfer
s from everyTransferDragSourceListener
.Transfer[]
DelegatingDropAdapter.getTransfers()
Returns the combined set ofTransfer
types of allTransferDropTargetListeners
. -
Uses of Transfer in org.eclipse.jface.viewers
Modifier and TypeMethodDescriptionvoid
StructuredViewer.addDragSupport
(int operations, Transfer[] transferTypes, DragSourceListener listener) Adds support for dragging items out of this viewer via a user drag-and-drop operation.void
StructuredViewer.addDropSupport
(int operations, Transfer[] transferTypes, DropTargetListener listener) Adds support for dropping items into this viewer via a user drag-and-drop operation. -
Uses of Transfer in org.eclipse.swt.dnd
Modifier and TypeClassDescriptionclass
The classByteArrayTransfer
provides a platform specific mechanism for converting a javabyte[]
to a platform specific representation of the byte array and vice versa.class
The classFileTransfer
provides a platform specific mechanism for converting a list of files represented as a javaString[]
to a platform specific representation of the data and vice versa.class
The classHTMLTransfer
provides a platform specific mechanism for converting text in HTML format represented as a javaString
to a platform specific representation of the data and vice versa.class
The classImageTransfer
provides a platform specific mechanism for converting an Image represented as a javaImageData
to a platform specific representation of the data and vice versa.class
The classRTFTransfer
provides a platform specific mechanism for converting text in RTF format represented as a javaString
to a platform specific representation of the data and vice versa.class
The classTextTransfer
provides a platform specific mechanism for converting plain text represented as a javaString
to a platform specific representation of the data and vice versa.class
The classURLTransfer
provides a platform specific mechanism for converting text in URL format represented as a javaString
to a platform specific representation of the data and vice versa.Modifier and TypeMethodDescriptionTransfer[]
DragSource.getTransfer()
Returns the list of data types that can be transferred by this DragSource.Transfer[]
DropTarget.getTransfer()
Returns a list of the data types that can be transferred to this DropTarget.Modifier and TypeMethodDescriptionClipboard.getContents
(Transfer transfer) Retrieve the data of the specified type currently available on the system clipboard.Clipboard.getContents
(Transfer transfer, int clipboards) Retrieve the data of the specified type currently available on the specified clipboard.void
Clipboard.setContents
(Object[] data, Transfer[] dataTypes) Place data of the specified type on the system clipboard.void
Clipboard.setContents
(Object[] data, Transfer[] dataTypes, int clipboards) Place data of the specified type on the specified clipboard.void
DragSource.setTransfer
(Transfer... transferAgents) Specifies the list of data types that can be transferred by this DragSource.void
DropTarget.setTransfer
(Transfer... transferAgents) Specifies the data types that can be transferred to this DropTarget. -
Uses of Transfer in org.eclipse.ui.application
Modifier and TypeMethodDescriptionvoid
IWorkbenchWindowConfigurer.addEditorAreaTransfer
(Transfer transfer) Adds the given drag and dropTransfer
type to the ones supported for drag and drop on the editor area of this workbench window. -
Uses of Transfer in org.eclipse.ui.dnd
Modifier and TypeMethodDescriptionvoid
IDragAndDropService.addMergedDropTarget
(Control control, int ops, Transfer[] transfers, DropTargetListener listener) Causes a drop target to be added to the given control that respects the existing site's drop behaviour in addition to the behaviour being specified for the given control. -
Uses of Transfer in org.eclipse.ui.forms.widgets
Modifier and TypeMethodDescriptionvoid
Form.addTitleDragSupport
(int operations, Transfer[] transferTypes, DragSourceListener listener) Adds support for dragging items out of the form title area via a user drag-and-drop operation.void
Form.addTitleDropSupport
(int operations, Transfer[] transferTypes, DropTargetListener listener) Adds support for dropping items into the form title area via a user drag-and-drop operation. -
Uses of Transfer in org.eclipse.ui.internal
Modifier and TypeMethodDescriptionvoid
WorkbenchWindowConfigurer.addEditorAreaTransfer
(Transfer tranfer) void
EditorSiteDragAndDropServiceImpl.addMergedDropTarget
(Control control, int ops, Transfer[] transfers, DropTargetListener listener) -
Uses of Transfer in org.eclipse.ui.part
Modifier and TypeClassDescriptionclass
TheEditorInputTransfer
class is used to transfer anIEditorInput
and corresponding editorId from one part to another in a drag and drop operation.class
AMarkerTransfer
is used to transfer an array ofIMarker
s from one part to another in a drag and drop operation.class
This class can be used to transfer an instance ofPluginTransferData
between two parts in a workbench in a drag and drop operation.class
TheResourceTransfer
class is used to transfer an array ofIResource
s from one part to another in a drag and drop operation or a cut, copy, paste action. -
Uses of Transfer in org.eclipse.ui.texteditor
Modifier and TypeMethodDescriptionTransfer[]
ITextEditorDropTargetListener.getTransfers()
Returns the list ofTransfer
agents that are supported by this listener.