is new.
java.lang.Objectjavax.swing.TransferHandler
public class TransferHandler
This class is used to handle the transfer of a Transferable to and from Swing components. The Transferable is used to represent data that is exchanged via a cut, copy, or paste to/from a clipboard. It is also used in drag-and-drop operations to represent a drag from a component, and a drop to a component. Swing provides functionality that automatically supports cut, copy, and paste keyboard bindings that use the functionality provided by an implementation of this class. Swing also provides functionality that automatically supports drag and drop that uses the functionality provided by an implementation of this class. The Swing developer can concentrate on specifying the semantics of a transfer primarily by setting the transferHandler property on a Swing component.
This class is implemented to provide a default behavior of transferring a component property simply by specifying the name of the property in the constructor. For example, to transfer the foreground color from one component to another either via the clipboard or a drag and drop operation a TransferHandler can be constructed with the string "foreground". The built in support will use the color returned by getForeground as the source of the transfer, and setForeground for the target of a transfer.
Please see How to Use Drag and Drop and Data Transfer , a section in The Java Tutorial, for more information.
| Nested Class Summary | |
|---|---|
| static class |
TransferHandler.DropLocation
Represents a location where dropped data should be inserted. |
static class
|
TransferHandler.TransferSupport
This class encapsulates all relevant details of a clipboard or drag and drop transfer, and also allows for customizing aspects of the drag and drop experience.
|
|
|
| Field Summary | |
|---|---|
| static int |
COPY
An int representing a "copy" transfer action. |
| static int |
COPY_OR_MOVE
An int representing a source action capability of either "copy" or "move". |
static int
|
LINK
An int representing a "link" transfer action.
|
| static int |
MOVE
An int representing a "move" transfer action. |
| static int |
NONE
An int representing no transfer action. |
| Constructor Summary | |
|---|---|
| protected |
TransferHandler
() Convenience constructor for subclasses. |
|
TransferHandler
(
String
property) Constructs a transfer handler that can transfer a Java Bean property from one component to another via the clipboard or a drag and drop operation. |
|
| Method Summary | |
|---|---|
| boolean |
canImport
(
JComponent
comp,
DataFlavor
[] transferFlavors) Indicates whether a component will accept an import of the given set of data flavors prior to actually attempting to import it. |
boolean
|
canImport
(
TransferHandler.TransferSupport
This method is called repeatedly during a drag and drop operation to allow the developer to configure properties of, and to return the acceptability of transfers; with a return value of true indicating that the transfer represented by the given TransferSupport (which contains all of the details of the transfer) is acceptable at the current time, and a value of false rejecting the transfer.
|
|
|
| protected Transferable |
createTransferable
(
JComponent
c) Creates a Transferable to use as the source for a data transfer. |
| void |
exportAsDrag
(
JComponent
comp,
InputEvent
e, int action) Causes the Swing drag support to be initiated. |
| protected void |
exportDone
(
JComponent
source,
Transferable
data, int action) Invoked after data has been exported. |
| void |
exportToClipboard
(
JComponent
comp,
Clipboard
clip, int action) Causes a transfer from the given component to the given clipboard. |
| static Action |
getCopyAction
() Returns an Action that
performs copy operations to the clipboard.
|
| static Action |
getCutAction
() Returns an Action that
performs cut operations to the clipboard.
|
| static Action |
getPasteAction
() Returns an Action that
performs paste operations from the clipboard.
|
| int |
getSourceActions
(
JComponent
Returns the type of transfer actions supported by the
source; any bitwise-OR combination of COPY, MOVE and LINK.
|
| Icon |
getVisualRepresentation
(
Transferable
t) Returns an object that establishes the look of a transfer. |
| boolean |
importData
(
JComponent
comp,
Transferable
t) Causes a transfer to a component from a clipboard or a DND drop operation. |
| boolean |
importData
TransferHandler.TransferSupport
Causes a transfer to occur from a clipboard or a
drag and
|
|
|
| Methods inherited from class java.lang. Object |
|---|
| clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait |
| Field Detail |
|---|
public static final int NONE
public static final int COPY
public static final int MOVE
public static final int COPY_OR_MOVE
LINK
public static final int
LINK
An int representing a "link" transfer action. This value is used to specify that data should be linked in a drag and drop operation.
Since:
1.6
See Also:
DnDConstants.ACTION_LINK
,
Constant Field Values
| Constructor Detail |
|---|
public TransferHandler(String property)
protected TransferHandler()
| Method Detail |
|---|
public static Action getCutAction()
Returns an Action that performs cut operations to the clipboard. When performed, this action operates on the JComponent source of the ActionEvent by invoking exportToClipboard, with a MOVE action, on the component's TransferHandler.
an Action for performing cuts to the clipboard
public static Action getCopyAction()
Returns an Action that performs copy operations to the clipboard. When performed, this action operates on the JComponent source of the ActionEvent by invoking exportToClipboard, with a COPY action, on the component's TransferHandler.
an Action for performing copies to the clipboard
public static Action getPasteAction()
Returns an Action that performs paste operations from the clipboard. When performed, this action operates on the JComponent source of the ActionEvent by invoking importData, with the clipboard contents, on the component's TransferHandler.
an Action for performing pastes from the clipboard
public void exportAsDrag(JComponent comp,
InputEvent e,
int action)
The transfer will not necessarily have been completed at the return of this call (i.e. the call does not block waiting for the drop). The transfer will take place through the Swing implementation of the java.awt.dnd mechanism, requiring no further effort from the developer. The exportDone method will be called when the transfer has completed.
COPY, MOVE
LINK;
DnD system
change the action used
public void exportToClipboard(JComponent comp,
Clipboard clip,
int action)
throws IllegalStateException
The transfer will take place using the java.awt.datatransfer mechanism, requiring no further effort from the developer. Any data transfer will be complete and the exportDone method will be called with the action that occurred, before this method returns. Should the clipboard be unavailable when attempting to place data on it, the IllegalStateException thrown by Clipboard.setContents(Transferable, ClipboardOwner) will be propogated through this method. However, exportDone will first be called with an action of NONE for consistency.
public boolean importData(TransferHandler.TransferSupport
TransferHandler.TransferInfosupport)
info)
drag and
TransferSupport.
While the drag and drop implementation calls canImport to determine the suitability of a transfer before calling this method, the implementation of paste does not. As such, it cannot be assumed that the transfer is acceptable upon a call to this method for paste. It is recommended that canImport be explicitly called to cover this case.
Note: The TransferSupport object passed to this method is only valid for the duration of the method call.
Note: The TransferInfo object passed to this method is only valid for the duration of the method call.
It is undefined what values it may contain after this method returns.
support
support
See Also:
canImport(TransferHandler.TransferSupport)
public boolean importData(JComponent comp,
Transferable t)
Note: Swing now calls the newer version of importData that takes a
TransferSupport,
TransferInfo,
which in turn calls this method (if the component in the
TransferSupport
TransferInfo
is a JComponent). Developers are encouraged to call and override the newer version as it provides more information (and is the only version that supports use with a TransferHandler set directly on a JFrame or other non-JComponent).
importData(TransferHandler.TransferSupport)
public booleanshouldIndicate(TransferHandler.TransferInfoinfo, boolean canImport)
Note: The TransferInfo object passed to this method is only valid for the duration of the method call. It is undefined what values it may contain after this method returns.
public boolean canImport(TransferHandler.TransferSupport
TransferHandler.TransferInfosupport)
info)
This method is called repeatedly during a drag and drop operation to allow the developer to configure properties of, and to return the acceptability of transfers; with a return value of true indicating that the transfer represented by the given TransferSupport (which contains all of the details of the transfer) is acceptable at the current time, and a value of false rejecting the transfer.
For those components that automatically display a drop location during drag and drop, accepting the transfer, by default, tells them to show the drop location. This can be changed by calling setShowDropLocation on the TransferSupport.
By default, when the transfer is accepted, the chosen drop action is that picked by the user via their drag gesture. The developer can override this and choose a different action, from the supported source actions, by calling setDropAction on the TransferSupport.
On every call to canImport, the TransferSupport contains fresh state. As such, any properties set on it must be set on every call. Upon a drop, canImport is called one final time before calling into importData. Any state set on the TransferSupport during that last call will be available in importData.
This method is not called internally in response to paste operations. As such, it is recommended that implementations of importData explicitly call this method for such cases and that this method be prepared to return the suitability of paste operations as well.
Note: The TransferSupport object passed to this method is only valid for the duration of the method call.
Note: The TransferInfo object passed to this method is only valid for the duration of the method call.
It is undefined what values it may contain after this method returns.
support
support
importData(TransferHandler.TransferSupport)
,
TransferHandler.TransferSupport.setShowDropLocation(boolean)
,
TransferHandler.TransferSupport.setDropAction(int)
public boolean canImport(JComponent comp,
DataFlavor[] transferFlavors)
Note: Swing now calls the newer version of canImport that takes a
TransferSupport,
TransferInfo,
which in turn calls this method (only if the component in the
TransferSupport
TransferInfo
is a JComponent). Developers are encouraged to call and override the newer version as it provides more information (and is the only version that supports use with a TransferHandler set directly on a JFrame or other non-JComponent).
canImport(TransferHandler.TransferSupport)
public int getSourceActions(JComponent c)
Returns the type of transfer actions supported by the source; any bitwise-OR combination of COPY, MOVE and LINK.
Some models are not mutable, so a transfer operation of MOVE should not be advertised in that case. Returning NONE disables transfers from the component.
public Icon getVisualRepresentation(Transferable t)
The default Swing logic will not do an alpha blended drag animation if the return is null.
protected Transferable createTransferable(JComponent c)
protected void exportDone(JComponent source,
Transferable data,
int action)
This method is implemented to do nothing since MOVE is not a supported action of this implementation (getSourceActions does not include MOVE).