You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
889 B
52 lines
889 B
/*
|
|
* Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
package java.awt.datatransfer;
|
|
|
|
import java.util.EventObject;
|
|
|
|
|
|
/**
|
|
* <code>FlavorEvent</code> is used to notify interested parties
|
|
* that available {@link DataFlavor}s have changed in the
|
|
* {@link Clipboard} (the event source).
|
|
*
|
|
* @see FlavorListener
|
|
*
|
|
* @author Alexander Gerasimov
|
|
* @since 1.5
|
|
*/
|
|
public class FlavorEvent extends EventObject {
|
|
/**
|
|
* Constructs a <code>FlavorEvent</code> object.
|
|
*
|
|
* @param source the <code>Clipboard</code> that is the source of the event
|
|
*
|
|
* @throws IllegalArgumentException if the {@code source} is {@code null}
|
|
*/
|
|
public FlavorEvent(Clipboard source) {
|
|
super(source);
|
|
}
|
|
}
|