Package com.vaadin.ui.dnd
Interface FileDropHandler<T extends AbstractComponent>
-
- Type Parameters:
T
- Type of the file drop target component.
- All Superinterfaces:
Serializable
public interface FileDropHandler<T extends AbstractComponent> extends Serializable
Handles the drop event on a file drop target.- Since:
- 8.1
- Author:
- Vaadin Ltd
- See Also:
FileDropEvent
,FileDropTarget
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
drop(FileDropEvent<T> event)
Handles the drop event.
-
-
-
Method Detail
-
drop
void drop(FileDropEvent<T> event)
Handles the drop event. The method is called when files are dropped onto the file drop target this handler is registered to.- Parameters:
event
- The file drop event containing the list of files that were dropped onto the component.
-
-