We have a request on a product I am working on to get more feedback on our drag and drop behavior. Specifically, they would like us to highlight certain areas when the mouse is over them during the drag operation (to show where the drop will occur). However, we are using a TransferHandler to handle both DnD, and cut/copy/paste, and based on what we have tested it seems that Swing will not let us add another DropTarget to the component (in retrospect, for some obvious reasons!) We have attempted to go down a few paths, none of which have born any fruit.
Basically, we would like to get in the middle of the dragEnter and dragExit events while still using the TransferHandler capabilities to facilitate easy Cut/Copy/Paste and drop behavior. Does anyone have any examples to do this kind of thing? Or is this just really hard to do in the current setup of DnD in Swing?