In my application, I want to know what kind of cursor is displayed (default, move, resize, etc..).
For this I am using the getCursor method, which works fine in all cases except when I am performing a Drag and Drop using java swing DnD.
When I am performing a drag and drop, the Component.getCursor() method returns a Default Cursor instance, while the mouse is application is displaying a DnD cursor.
Is there any way to get the Cursor information when a Drag and drop is performed ?