net.refractions.udig.ui
Interface IDropHandlerListener


public interface IDropHandlerListener

Listener that is notified when a drop is completed.

Since:
1.1.0
Author:
Jesse

Method Summary
 void done(IDropAction action, java.lang.Throwable error)
          Called when an action is complete.
 void noAction(java.lang.Object data)
          Called when no drop action could be found that can process the data.
 void starting(IDropAction action)
          Called when an action is about to be ran.
 

Method Detail

starting

void starting(IDropAction action)
Called when an action is about to be ran.

Parameters:
action - action about to be ran.

noAction

void noAction(java.lang.Object data)
Called when no drop action could be found that can process the data.

Parameters:
data - data that was dropped.

done

void done(IDropAction action,
          java.lang.Throwable error)
Called when an action is complete.

Parameters:
action - completed action.
error - Null unless an error occurred during the execution of the drop event;