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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
URIsDropped(java.net.URI[] uris)
This method is called when uris have been successfully dropped.
-
-
-
Method Detail
-
URIsDropped
void URIsDropped(java.net.URI[] uris)
This method is called when uris have been successfully dropped.- Parameters:
uris
- An array ofURI
s that were dropped.- Since:
- 1.0
-
-