2003-10-11 Michael Koch <konqueror@gmx.de>
* java/awt/ActiveEvent.java * java/awt/datatransfer/ClipboardOwner.java * java/awt/datatransfer/FlavorMap.java * java/awt/datatransfer/Transferable.java * java/awt/dnd/Autoscroll.java * java/awt/dnd/peer/DragSourceContextPeer.java * java/awt/dnd/peer/DropTargetContextPeer.java * java/awt/dnd/peer/DropTargetPeer.java * java/awt/font/MultipleMaster.java * java/awt/font/OpenType.java * java/awt/im/spi/InputMethodDescriptor.java * java/awt/image/ImageObserver.java * java/awt/image/ImageConsumer.java * java/awt/image/ImageProducer.java * java/awt/image/RGBImageFilter.java * java/awt/image/RasterOp.java * java/awt/image/renderable/RenderableImage.java From-SVN: r72341
This commit is contained in:
parent
b46f35f3a8
commit
00f4a3fb56
18 changed files with 119 additions and 92 deletions
|
@ -39,22 +39,20 @@ exception statement from your version. */
|
|||
package java.awt.datatransfer;
|
||||
|
||||
/**
|
||||
* This interface is for classes that will own a clipboard object.
|
||||
*
|
||||
* @author Aaron M. Renn (arenn@urbanophile.com)
|
||||
*/
|
||||
* This interface is for classes that will own a clipboard object.
|
||||
*
|
||||
* @author Aaron M. Renn (arenn@urbanophile.com)
|
||||
*/
|
||||
public interface ClipboardOwner
|
||||
{
|
||||
|
||||
/**
|
||||
* This method is called to notify this object that it no longer
|
||||
* has ownership of the specified <code>Clipboard</code>.
|
||||
*
|
||||
* @param clipboard The clipboard for which ownership was lost.
|
||||
* @param contents The contents of the clipboard which are no longer owned.
|
||||
*/
|
||||
public abstract void
|
||||
lostOwnership(Clipboard clipboard, Transferable contents);
|
||||
/**
|
||||
* This method is called to notify this object that it no longer
|
||||
* has ownership of the specified <code>Clipboard</code>.
|
||||
*
|
||||
* @param clipboard The clipboard for which ownership was lost.
|
||||
* @param contents The contents of the clipboard which are no longer owned.
|
||||
*/
|
||||
void lostOwnership (Clipboard clipboard, Transferable contents);
|
||||
|
||||
} // interface ClipboardOwner
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue