⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 clipboardowner.java

📁 JAVA基本类源代码,大家可以学习学习!
💻 JAVA
字号:
/* * @(#)ClipboardOwner.java	1.10 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package java.awt.datatransfer;/** * Defines the interface for classes that will provide data to * a clipboard. An instance of this interface becomes the owner * of the contents of a clipboard (clipboard owner) if it is * passed as an argument to * {@link java.awt.datatransfer.Clipboard#setContents} method of * the clipboard and this method returns successfully.  * The instance remains the clipboard owner until another application * or another object within this application asserts ownership * of this clipboard. * * @see java.awt.datatransfer.Clipboard *  * @version 	1.10, 01/23/03 * @author	Amy Fowler */public interface ClipboardOwner {    /**     * Notifies this object that it is no longer the clipboard owner.     * This method will be called when another application or another     * object within this application asserts ownership of the clipboard.     *     * @param clipboard the clipboard that is no longer owned     * @param contents the contents which this owner had placed on the clipboard     */    public void lostOwnership(Clipboard clipboard, Transferable contents);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -