net.iharder.dnd
Class FileDropEvent
java.lang.Object
java.util.EventObject
net.iharder.dnd.FileDropEvent
- All Implemented Interfaces:
- java.io.Serializable
public class FileDropEvent
- extends java.util.EventObject
This is the event that is passed to the
filesDropped(...)
method in your
FileDropListener
when files are dropped onto a registered drop
target.
I'm releasing this code into the Public Domain. Enjoy.
Original author: Robert Harder, rharder@usa.net
- Version:
- 1.1
- Author:
- Robert Harder, rharder@usa.net
- See Also:
- Serialized Form
Constructor Summary |
FileDropEvent(java.io.File[] files,
java.lang.Object source)
Constructs a FileDropEvent with the array of files that were
dropped and the FileDropBean that initiated the event. |
Method Summary |
java.io.File[] |
getFiles()
Returns an array of files that were dropped on a registered drop
target. |
Methods inherited from class java.util.EventObject |
getSource, toString |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
FileDropEvent
public FileDropEvent(java.io.File[] files,
java.lang.Object source)
- Constructs a
FileDropEvent
with the array of files that were
dropped and the FileDropBean
that initiated the event.
- Parameters:
files
- The array of files that were dropped.source
- The event source.- Since:
- 1.1
getFiles
public java.io.File[] getFiles()
- Returns an array of files that were dropped on a registered drop
target.
- Returns:
- array of files that were dropped
- Since:
- 1.1