We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.ui.dnd.
Interface FileDropHandler<T extends AbstractComponent>
-
Type Parameters:
T
- Type of the file drop target component.All Superinterfaces:
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:
-
-
Method Summary
All 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.
-
-