-
- All Known Implementing Classes:
- DataHandler, DropTargetContext.TransferableProxy, StringSelection
public interface Transferable
Defines the interface for classes that can be used to provide data for a transfer operation.For information on using data transfer with Swing, see How to Use Drag and Drop and Data Transfer, a section in The Java Tutorial, for more information.
-
-
Method Summary
Methods Modifier and Type Method and Description Object
getTransferData(DataFlavor flavor)
Returns an object which represents the data to be transferred.DataFlavor[]
getTransferDataFlavors()
Returns an array of DataFlavor objects indicating the flavors the data can be provided in.boolean
isDataFlavorSupported(DataFlavor flavor)
Returns whether or not the specified data flavor is supported for this object.
-
-
-
Method Detail
-
getTransferDataFlavors
DataFlavor[] getTransferDataFlavors()
Returns an array of DataFlavor objects indicating the flavors the data can be provided in. The array should be ordered according to preference for providing the data (from most richly descriptive to least descriptive).- Returns:
- an array of data flavors in which this data can be transferred
-
isDataFlavorSupported
boolean isDataFlavorSupported(DataFlavor flavor)
Returns whether or not the specified data flavor is supported for this object.- Parameters:
flavor
- the requested flavor for the data- Returns:
- boolean indicating whether or not the data flavor is supported
-
getTransferData
Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException, IOException
Returns an object which represents the data to be transferred. The class of the object returned is defined by the representation class of the flavor.- Parameters:
flavor
- the requested flavor for the data- Throws:
IOException
- if the data is no longer available in the requested flavor.UnsupportedFlavorException
- if the requested data flavor is not supported.- See Also:
DataFlavor.getRepresentationClass()
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-java/awt/datatransfer/transferable.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.