Interface URIDrop.Listener

  • 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 Detail

      • URIsDropped

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