1. /*
  2. * @(#)FlavorEvent.java 1.2 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.awt.datatransfer;
  8. import java.util.EventObject;
  9. /**
  10. * <code>FlavorEvent</code> is used to notify interested parties
  11. * that available {@link DataFlavor}s have changed in the
  12. * {@link Clipboard} (the event source).
  13. *
  14. * @see FlavorListener
  15. *
  16. * @version 1.2 12/19/03
  17. * @author Alexander Gerasimov
  18. * @since 1.5
  19. */
  20. public class FlavorEvent extends EventObject {
  21. /**
  22. * Constructs a <code>FlavorEvent</code> object.
  23. *
  24. * @param source the <code>Clipboard</code> that is the source of the event
  25. */
  26. public FlavorEvent(Clipboard source) {
  27. super(source);
  28. }
  29. }