public static interface FileDrop.FileDropExtListener
public class MyClass implements FileDrop.Listener
...
public void filesDropped( File[] files )
{
...
} // end filesDropped
...
Modifier and Type | Method and Description |
---|---|
void |
filesDropped(java.awt.dnd.DropTargetDropEvent evt,
java.io.File[] files)
This method is called when files have been successfully dropped.
|
void filesDropped(java.awt.dnd.DropTargetDropEvent evt, java.io.File[] files)
evt
- The DropTargetDropEvent which initiated the drop operation.files
- An array of Files that were dropped.