Module com.iamsoft.util.ui
Package com.iamsoft.util.ui.swing
Interface FileDrop.TransferableObject.Fetcher
-
- Enclosing class:
- FileDrop.TransferableObject
public static interface FileDrop.TransferableObject.Fetcher
Instead of passing your data directly to theFileDrop.TransferableObject
constructor, you may want to know exactly when your data was received in case you need to remove it from its source (or do anyting else to it). When thegetTransferData(...)
method is called on theFileDrop.TransferableObject
, theFileDrop.TransferableObject.Fetcher
'sgetObject()
method will be called.- Since:
- 1.1 copyright 2001
- Version:
- 1.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
getObject()
Return the object being encapsulated in theFileDrop.TransferableObject
.
-
-
-
Method Detail
-
getObject
Object getObject()
Return the object being encapsulated in theFileDrop.TransferableObject
.- Returns:
- The dropped object
- Since:
- 1.1
-
-