* Constructs a new DragFilesSupport.
*/
public DragFilesSupport(Component c, FileCollector fc)
{
this.fc = fc;
DragGestureRecognizer dgr = new MouseDragAdapter
(dragSource, c, DnDConstants.ACTION_MOVE, this);
// FIX ME: what does the next line do?
// according to the java source, nothing
//dgr.setSourceActions(dgr.getSourceActions() & ~InputEvent.BUTTON3_MASK);
}