Package com.vaadin.ui.dnd.event
Interface DragEndListener<T extends AbstractComponent>
-
- Type Parameters:
T- Type of draggable component.
- All Superinterfaces:
ConnectorEventListener,EventListener,Serializable,SerializableEventListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface DragEndListener<T extends AbstractComponent> extends ConnectorEventListener
Interface to be implemented when creating a dragend listener on a drag source for HTML5 drag and drop.- Since:
- 8.1
- Author:
- Vaadin Ltd
- See Also:
DragSourceExtension.addDragEndListener(DragEndListener)
-
-
Field Summary
Fields Modifier and Type Field Description static MethodDRAGEND_METHOD
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddragEnd(DragEndEvent<T> event)Called when dragend event is fired.
-
-
-
Field Detail
-
DRAGEND_METHOD
static final Method DRAGEND_METHOD
-
-
Method Detail
-
dragEnd
void dragEnd(DragEndEvent<T> event)
Called when dragend event is fired.- Parameters:
event- Server side dragend event.
-
-