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 and Description |
---|---|
PasteType[] |
types(Node target)
Method that checks the type of target node and can
decide which paste types it supports.
|