public static interface FileDrop.Listener
      public class MyClass implements FileDrop.Listener
      ...
      public void filesDropped( java.io.File[] files )
      {
          ...
      }   // end filesDropped
      ...
 | Modifier and Type | Method and Description | 
|---|---|
void | 
filesDropped(java.io.File[] files)
This method is called when files have been successfully dropped. 
 |