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 Type
    Method
    Description
    void
    URIsDropped(URI[] uris)
    This method is called when uris have been successfully dropped.
  • Method Details

    • URIsDropped

      void URIsDropped(URI[] uris)
      This method is called when uris have been successfully dropped.
      Parameters:
      uris - An array of URIs that were dropped.
      Since:
      1.0