java.awt.datatransfer.ClipboardOwner (JDK 1.1)
This interface defines the single method that an object that places data on a Clipboard must implement. This method is used to notify the object when its data on the clipboard is replaced by other, more recent, data. An object that places data on a clipboard must remain ready to satisfy requests for that data until lostOwnership() is called.
public abstract interfaceClipboardOwner{ //Public Instance Methodspublic abstract voidlostOwnership(Clipboardclipboard, Transferablecontents); }
Implemented By:
StringSelection
Passed To:
Clipboard.setContents()
Type Of:
Clipboard.owner