Package jmri.util.iharder.dnd
Interface URIDrop.Listener
- All Known Subinterfaces:
URIDrop.ListenerExt
- All Known Implementing Classes:
EditableResizableImagePanel
- Enclosing class:
- URIDrop
public static interface URIDrop.Listener
Implement this inner interface to listen for when uris are dropped. For
example your class declaration may begin like this:
public class MyClass implements URIsDrop.Listener
...
public void URIsDropped( java.io.URI[] files )
{
...
}
...
- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptionvoidURIsDropped(URI[] uris) This method is called when uris have been successfully dropped.
-
Method Details
-
URIsDropped
This method is called when uris have been successfully dropped.- Parameters:
uris- An array ofURIs that were dropped.- Since:
- 1.0
-