Package org.eclipse.rap.rwt.dnd
Class ClientFileTransfer
java.lang.Object
org.eclipse.swt.dnd.Transfer
org.eclipse.rap.rwt.dnd.ClientFileTransfer
The class
ClientFileTransfer
allows the user to drop files from the user's file
system on a DropTarget
. The DropEvent will contain data of the type
ClientFile[]
.- Since:
- 2.3
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic ClientFileTransfer
Returns a list of the platform specific data types that can be converted using this transfer agent.protected int[]
Returns the platform specific ids of the data types that can be converted using this transfer agent.protected String[]
Returns the platform specific names of the data types that can be converted using this transfer agent.boolean
isSupportedType
(TransferData transferData) Returns true if theTransferData
data type can be converted using this transfer agent, or false otherwise (including if transferData isnull
).void
javaToNative
(Object object, TransferData transferData) Converts a java representation of data to a platform specific representation of the data.nativeToJava
(TransferData transferData) Converts a platform specific representation of data to a java representation.Methods inherited from class org.eclipse.swt.dnd.Transfer
registerType, validate
-
Method Details
-
getInstance
-
getSupportedTypes
Description copied from class:Transfer
Returns a list of the platform specific data types that can be converted using this transfer agent.Only the data type fields of the
TransferData
objects are filled in.- Specified by:
getSupportedTypes
in classTransfer
- Returns:
- a list of the data types that can be converted using this transfer agent
-
isSupportedType
Description copied from class:Transfer
Returns true if theTransferData
data type can be converted using this transfer agent, or false otherwise (including if transferData isnull
).- Specified by:
isSupportedType
in classTransfer
- Parameters:
transferData
- a platform specific description of a data type; only the data type fields of theTransferData
object need to be filled in- Returns:
- true if the transferData data type can be converted using this transfer agent
-
getTypeIds
protected int[] getTypeIds()Description copied from class:Transfer
Returns the platform specific ids of the data types that can be converted using this transfer agent.- Specified by:
getTypeIds
in classTransfer
- Returns:
- the platform specific ids of the data types that can be converted using this transfer agent
-
getTypeNames
Description copied from class:Transfer
Returns the platform specific names of the data types that can be converted using this transfer agent.- Specified by:
getTypeNames
in classTransfer
- Returns:
- the platform specific names of the data types that can be converted using this transfer agent.
-
javaToNative
Description copied from class:Transfer
Converts a java representation of data to a platform specific representation of the data.On a successful conversion, the transferData.result field will be set to 1. If this transfer agent is unable to perform the conversion, the transferData.result field will be set to a failure value of 0.
IMPORTANT: This method is not part of the RWT public API. It is marked public only so that it can be shared within the packages provided by RWT. It should never be accessed from application code.
- Specified by:
javaToNative
in classTransfer
- Parameters:
object
- a java representation of the data to be converted; the type of Object that is passed in is dependent on theTransfer
subclass.transferData
- an empty TransferData object; this object will be filled in on return with the platform specific representation of the data
-
nativeToJava
Description copied from class:Transfer
Converts a platform specific representation of data to a java representation.IMPORTANT: This method is not part of the RWT public API. It is marked public only so that it can be shared within the packages provided by RWT. It should never be accessed from application code.
- Specified by:
nativeToJava
in classTransfer
- Parameters:
transferData
- the platform specific representation of the data to be converted- Returns:
- a java representation of the converted data if the conversion was
successful; otherwise null. If transferData is
null
thennull
is returned. The type of Object that is returned is dependent on theTransfer
subclass.
-