< prev index next >

modules/javafx.graphics/src/main/java/javafx/scene/input/DragEvent.java

Print this page
rev 10598 : 8185767: Fix broken links in Javadocs

*** 278,288 **** // new EventType<DragEvent>(DragEvent.ANY, "DRAG_TRANSFER_MODE_CHANGED"); /** * This event occurs when the mouse button is released during drag and drop * gesture on a drop target. Transfer of data from the ! * {@link DragEvent}'s {@link DragEvent#dragboard dragboard} should happen * in handler of this event. */ public static final EventType<DragEvent> DRAG_DROPPED = new EventType<DragEvent>(DragEvent.ANY, "DRAG_DROPPED"); --- 278,288 ---- // new EventType<DragEvent>(DragEvent.ANY, "DRAG_TRANSFER_MODE_CHANGED"); /** * This event occurs when the mouse button is released during drag and drop * gesture on a drop target. Transfer of data from the ! * {@link DragEvent}'s {@link DragEvent#getDragboard() dragboard} should happen * in handler of this event. */ public static final EventType<DragEvent> DRAG_DROPPED = new EventType<DragEvent>(DragEvent.ANY, "DRAG_DROPPED");
*** 725,735 **** } /** * Indicates that transfer handling of this {@code DragEvent} was completed * successfully during a {@code DRAG_DROPPED} event handler. ! * No {@link #dragboard} access can happen after this call. * * @param isTransferDone {@code true} indicates that the transfer was successful. * @throws IllegalStateException if this is not a DRAG_DROPPED event */ public void setDropCompleted(boolean isTransferDone) { --- 725,735 ---- } /** * Indicates that transfer handling of this {@code DragEvent} was completed * successfully during a {@code DRAG_DROPPED} event handler. ! * No {@link #getDragboard() dragboard} access can happen after this call. * * @param isTransferDone {@code true} indicates that the transfer was successful. * @throws IllegalStateException if this is not a DRAG_DROPPED event */ public void setDropCompleted(boolean isTransferDone) {
< prev index next >