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

📄 dragsourcecontextpeer.java

📁 Mobile 应用程序使用 Java Micro Edition (Java ME) 平台
💻 JAVA
字号:
/* * @(#)DragSourceContextPeer.java	1.16 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package java.awt.dnd.peer;import java.awt.event.InputEvent;import java.awt.Component;import java.awt.Cursor;import java.awt.Image;import java.awt.Point;import java.awt.Rectangle;import java.awt.datatransfer.Transferable;import java.awt.dnd.DragSource;import java.awt.dnd.DragGestureEvent;import java.awt.dnd.DragSourceContext;import java.awt.dnd.DragSourceListener;import java.awt.dnd.InvalidDnDOperationException;/** * <p> * This interface is supplied by the underlying window system platform to * expose the behaviors of the Drag and Drop system to an originator of * the same * </p> * * @version 	1.16, 11/17/05 * @since 1.2 * */public interface DragSourceContextPeer {    /**     * start a drag     */    void startDrag(DragSourceContext dsc, Cursor c, Image dragImage, Point imageOffset) throws InvalidDnDOperationException;    /**     * return the current drag cursor     */    Cursor getCursor();    /**     * set the current drag cursor     */    void setCursor(Cursor c) throws InvalidDnDOperationException;    /**     * notify the peer that the Transferables DataFlavors have changed     */    void transferablesFlavorsChanged();}

⌨️ 快捷键说明

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