ClipboardOwner is implemented by classes that want to be notified when someone else sets the contents of a clipboard.
public abstract interface java.awt.datatransfer.ClipboardOwner { // Interface Methods public abstract void lostOwnership (Clipboard clipboard, Transferable contents); }
The clipboard whose contents have changed.
The contents that this owner originally put on the clipboard.
Tells the ClipboardOwner that the contents it placed on the given clipboard are no longer there.
Clipboard, StringSelection, Transferable