Example usage for javafx.scene.input TransferMode LINK

List of usage examples for javafx.scene.input TransferMode LINK

Introduction

In this page you can find the example usage for javafx.scene.input TransferMode LINK.

Prototype

TransferMode LINK

To view the source code for javafx.scene.input TransferMode LINK.

Click Source Link

Document

Indicates linking of data is supported or intended.

Usage

From source file:at.ac.tuwien.qse.sepm.gui.controller.impl.GridViewImpl.java

private void handleDragOver(DragEvent event) {
    event.acceptTransferModes(TransferMode.LINK);
    event.consume();
}