org.eclipse.swt.dnd
Class TransferData

java.lang.Object
  extended byorg.eclipse.swt.dnd.TransferData

public class TransferData
extends java.lang.Object

The TransferData class is a platform specific data structure for describing the type and the contents of data being converted by a transfer agent.

As an application writer, you do not need to know the specifics of TransferData. TransferData instances are passed to a subclass of Transfer and the Transfer object manages the platform specific issues. You can ask a Transfer subclass if it can handle this data by calling Transfer.isSupportedType(transferData).

You should only need to become familiar with the fields in this class if you are implementing a Transfer subclass and you are unable to subclass the ByteArrayTransfer class.


Field Summary
 int type
          The type is a unique identifier of a system format or user defined format.
 
Constructor Summary
TransferData()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

type

public int type
The type is a unique identifier of a system format or user defined format. (Warning: This field is platform dependent)

Constructor Detail

TransferData

public TransferData()