1. /*
  2. * @(#)ClipboardOwner.java 1.7 00/02/02
  3. *
  4. * Copyright 1996-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.awt.datatransfer;
  11. /**
  12. * Defines the interface for classes that will provide data to
  13. * a clipboard.
  14. *
  15. * @version 1.7, 02/02/00
  16. * @author Amy Fowler
  17. */
  18. public interface ClipboardOwner {
  19. /**
  20. * Notifies this object that it is no longer the owner of
  21. * the contents of the clipboard.
  22. * @param clipboard the clipboard that is no longer owned
  23. * @param contents the contents which this owner had placed on the clipboard
  24. */
  25. public void lostOwnership(Clipboard clipboard, Transferable contents);
  26. }