org.jivesoftware.spark.ui
Interface FileDropListener


public interface FileDropListener

The FileDropListener interface is one of the interfaces extension writers use to add functionality to Spark.

In general, you implement this interface in order to listen for file drops onto components.


Method Summary
 void filesDropped(java.util.Collection files, java.awt.Component component)
          Called when a file(s) has been Drag and Dropped onto a component.
 

Method Detail

filesDropped

void filesDropped(java.util.Collection files,
                  java.awt.Component component)
Called when a file(s) has been Drag and Dropped onto a component.

Parameters:
files - the Collection of Files.
component - the Component the files were dropped on.