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 9 import java.util.EventObject; 10 11 12 /** 13 * <code>FlavorEvent</code> is used to notify interested parties 14 * that available {@link DataFlavor}s have changed in the 15 * {@link Clipboard} (the event source). 16 * 17 * @see FlavorListener 18 * 19 * @version 1.2 12/19/03 20 * @author Alexander Gerasimov 21 * @since 1.5 22 */ 23 public class FlavorEvent extends EventObject { 24 /** 25 * Constructs a <code>FlavorEvent</code> object. 26 * 27 * @param source the <code>Clipboard</code> that is the source of the event 28 */ 29 public FlavorEvent(Clipboard source) { 30 super(source); 31 } 32 } 33