Interface FileDrop.Listener
-
- Enclosing class:
- FileDrop
public static interface FileDrop.ListenerImplement this inner interface to listen for when files are dropped. For example your class declaration may begin like this:public class MyClass implements FileDrop.Listener ... public void filesDropped( java.io.File[] files ) { ... } // end filesDropped ...- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfilesDropped(java.io.File[] files)This method is called when files have been successfully dropped.
-