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);
}
Built on June 20 2015. | Portions Copyright 1997-2015 Oracle. All rights reserved.