public static interface NodeTransfer.Paste
Each node should check for this type in a paste operation to allow anyone to insert something into it.
Sample example of implementation of Node.getPasteTypes(java.awt.datatransfer.Transferable)
:
public PasteType[] getPasteTypes (Transferable t) {
NodeTransfer.Paste p = (NodeTransfer.Paste)t.getTransferData (
NodeTransfer.nodePasteFlavor
);
return p.types (this);
}
Modifier and Type | Method | Description |
---|---|---|
org.openide.util.datatransfer.PasteType[] |
types(Node target) |
Method that checks the type of target node and can
decide which paste types it supports.
|
org.openide.util.datatransfer.PasteType[] types(Node target)
target
- the target nodeBuilt on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.