// but that is the rare case. In that event, we would acceptDrop(),
// but later dropComplete(false), which isn't too bad I think.
for (DataFlavor dataFlavor : supportedFlavors) {
// Check to see whether the handler will accept the drop,
// if not just go into the next in the list
DataFlavorHandlerSPI handler = getDataFlavorHandler(dataFlavor);
if (handler.accept(dtde, dataFlavor) == true) {
handler.handleDrop(dtde, dataFlavor);
return;
}
}
}