Example usage for java.awt.dnd DragSourceContext getTransferable

List of usage examples for java.awt.dnd DragSourceContext getTransferable

Introduction

In this page you can find the example usage for java.awt.dnd DragSourceContext getTransferable.

Prototype

public Transferable getTransferable() 

Source Link

Document

Returns the Transferable associated with this DragSourceContext .

Usage

From source file:Main.java

public void dragEnter(DragSourceDragEvent e) {
    DragSourceContext ctx = e.getDragSourceContext();

    System.out.println(ctx.getTransferable());
}