DropTargetContext.TransferableProxy
, StringSelection
public interface Transferable
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.
Modifier and Type | Method | Description |
---|---|---|
Object |
getTransferData |
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 |
Returns whether or not the specified data flavor is supported for this object. |
DataFlavor[] getTransferDataFlavors()
boolean isDataFlavorSupported(DataFlavor flavor)
flavor
- the requested flavor for the dataObject getTransferData(DataFlavor flavor) throws UnsupportedFlavorException, IOException
flavor
- the requested flavor for the dataIOException
- if the data is no longer available in the requested flavorUnsupportedFlavorException
- if the requested data flavor is not supported
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.datatransfer/java/awt/datatransfer/Transferable.html