API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.awt.dnd. DropTargetContext.TransferableProxy View Source
Author(s)
Since
Version
Serial
Hierarchy
 Object
      DropTargetContext.TransferableProxy
Implements
 Transferable
Subclasses
Description
protected class DropTargetContext.TransferableProxy
  TransferableProxy is a helper inner class that implements Transferable interface and serves as a proxy for another Transferable object which represents data transfer for a particular drag-n-drop operation.
See also:   
Constructors
pack-private DropTargetContext.TransferableProxy (Transferable t, boolean local)
  Constructs a TransferableProxy given a specified Transferable object representing data transfer for a particular drag-n-drop operation and a boolean which indicates whether the drag-n-drop operation is local (within the same JVM).
Methods
Hide/Show inherited methods
public Object getTransferData (DataFlavor df) throws UnsupportedFlavorException IOException [Specified in Transferable]
  Returns an object which represents the data provided by the encapsulated transferable for the requested data flavor.
public DataFlavor getTransferDataFlavors () [Specified in Transferable]
  Returns an array of DataFlavor objects indicating the flavors the data can be provided in by the encapsulated transferable.
public boolean isDataFlavorSupported (DataFlavor flavor) [Specified in Transferable]
  Returns whether or not the specified data flavor is supported by the encapsulated transferable.
Fields
Hide/Show inherited fields
protected boolean isLocal
A boolean indicating if the encapsulated Transferable object represents the result of local drag-n-drop operation (within the same JVM).
protected Transferable transferable
The encapsulated Transferable object.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar