Uses of Class
org.eclipse.swt.dnd.Transfer
-
Packages that use Transfer Package Description org.eclipse.jface.util Provides useful building blocks used throughout JFace, including property change events, a listener list implementation, and runtime checked assertions.org.eclipse.jface.viewers Provides a framework for viewers, which are model-based content adapters for SWT widgets.org.eclipse.swt.dnd SWT Drag and Drop support.org.eclipse.ui.application Application-level APIs for configuring and controling the Eclipse Platform User Interface.org.eclipse.ui.dnd Classes and Interface specifications for Drag and Drop in the Eclipse Platform User Interface.org.eclipse.ui.forms.widgets Custom widgets and controls for forms-based parts.org.eclipse.ui.navigator Provides the Common Navigator framework.org.eclipse.ui.navigator.resources Provides reusable components for clients that need to expand on the capabilities provided by the reference Common Navigator Resources extension.org.eclipse.ui.part Classes for the creation of workbench parts that integrate with the Eclipse Platform User Interface.org.eclipse.ui.texteditor Provides a framework for text editors obeying to the desktop rules.org.eclipse.ui.views.navigator Provides the standard Resource Navigator view which presents the tree of resources in the workspace. -
-
Uses of Transfer in org.eclipse.jface.util
Subclasses of Transfer in org.eclipse.jface.util Modifier and Type Class Description classLocalSelectionTransferA LocalSelectionTransfer may be used for drag and drop operations within the same instance of Eclipse.Methods in org.eclipse.jface.util that return Transfer Modifier and Type Method Description TransferTransferDragSourceListener. getTransfer()Returns theTransfertype that this listener can provide data for.TransferTransferDropTargetListener. getTransfer()Returns theTransfertype that this listener can accept a drop operation for.Transfer[]DelegatingDragAdapter. getTransfers()Returns theTransfers from everyTransferDragSourceListener.Transfer[]DelegatingDropAdapter. getTransfers()Returns the combined set ofTransfertypes of allTransferDropTargetListeners. -
Uses of Transfer in org.eclipse.jface.viewers
Methods in org.eclipse.jface.viewers with parameters of type Transfer Modifier and Type Method Description voidStructuredViewer. addDragSupport(int operations, Transfer[] transferTypes, DragSourceListener listener)Adds support for dragging items out of this viewer via a user drag-and-drop operation.voidStructuredViewer. 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
Subclasses of Transfer in org.eclipse.swt.dnd Modifier and Type Class Description classByteArrayTransferThe classByteArrayTransferprovides a platform specific mechanism for converting a javabyte[]to a platform specific representation of the byte array and vice versa.classFileTransferThe classFileTransferprovides 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.classHTMLTransferThe classHTMLTransferprovides a platform specific mechanism for converting text in HTML format represented as a javaStringto a platform specific representation of the data and vice versa.classImageTransferThe classImageTransferprovides a platform specific mechanism for converting an Image represented as a javaImageDatato a platform specific representation of the data and vice versa.classRTFTransferThe classRTFTransferprovides a platform specific mechanism for converting text in RTF format represented as a javaStringto a platform specific representation of the data and vice versa.classTextTransferThe classTextTransferprovides a platform specific mechanism for converting plain text represented as a javaStringto a platform specific representation of the data and vice versa.classURLTransferThe classURLTransferprovides a platform specific mechanism for converting text in URL format represented as a javaStringto a platform specific representation of the data and vice versa.Methods in org.eclipse.swt.dnd that return Transfer Modifier and Type Method Description Transfer[]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.Methods in org.eclipse.swt.dnd with parameters of type Transfer Modifier and Type Method Description ObjectClipboard. getContents(Transfer transfer)Retrieve the data of the specified type currently available on the system clipboard.ObjectClipboard. getContents(Transfer transfer, int clipboards)Retrieve the data of the specified type currently available on the specified clipboard.voidClipboard. setContents(Object[] data, Transfer[] dataTypes)Place data of the specified type on the system clipboard.voidClipboard. setContents(Object[] data, Transfer[] dataTypes, int clipboards)Place data of the specified type on the specified clipboard.voidDragSource. setTransfer(Transfer... transferAgents)Specifies the list of data types that can be transferred by this DragSource.voidDropTarget. setTransfer(Transfer... transferAgents)Specifies the data types that can be transferred to this DropTarget. -
Uses of Transfer in org.eclipse.ui.application
Methods in org.eclipse.ui.application with parameters of type Transfer Modifier and Type Method Description voidIWorkbenchWindowConfigurer. addEditorAreaTransfer(Transfer transfer)Adds the given drag and dropTransfertype to the ones supported for drag and drop on the editor area of this workbench window. -
Uses of Transfer in org.eclipse.ui.dnd
Methods in org.eclipse.ui.dnd with parameters of type Transfer Modifier and Type Method Description voidIDragAndDropService. 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
Methods in org.eclipse.ui.forms.widgets with parameters of type Transfer Modifier and Type Method Description voidForm. 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.voidForm. 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.navigator
Methods in org.eclipse.ui.navigator that return Transfer Modifier and Type Method Description Transfer[]CommonDragAdapter. getSupportedDragTransfers()Transfer[]CommonDropAdapter. getSupportedDropTransfers()abstract Transfer[]CommonDragAdapterAssistant. getSupportedTransferTypes()Extra TransferTypes allow the Navigator to generate different kinds of payloads for DND clients. -
Uses of Transfer in org.eclipse.ui.navigator.resources
Methods in org.eclipse.ui.navigator.resources that return Transfer Modifier and Type Method Description Transfer[]ResourceDragAdapterAssistant. getSupportedTransferTypes() -
Uses of Transfer in org.eclipse.ui.part
Subclasses of Transfer in org.eclipse.ui.part Modifier and Type Class Description classEditorInputTransferTheEditorInputTransferclass is used to transfer anIEditorInputand corresponding editorId from one part to another in a drag and drop operation.classMarkerTransferAMarkerTransferis used to transfer an array ofIMarkers from one part to another in a drag and drop operation.classPluginTransferThis class can be used to transfer an instance ofPluginTransferDatabetween two parts in a workbench in a drag and drop operation.classResourceTransferTheResourceTransferclass is used to transfer an array ofIResources 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
Methods in org.eclipse.ui.texteditor that return Transfer Modifier and Type Method Description Transfer[]ITextEditorDropTargetListener. getTransfers()Returns the list ofTransferagents that are supported by this listener. -
Uses of Transfer in org.eclipse.ui.views.navigator
Subclasses of Transfer in org.eclipse.ui.views.navigator Modifier and Type Class Description classLocalSelectionTransferDeprecated.as of 3.5, useLocalSelectionTransferinstead
-