Package com.vaadin.classic.v8.event
Interface MouseEvents.DoubleClickListener
- All Superinterfaces:
com.vaadin.flow.component.ComponentEventListener<MouseEvents.DoubleClickEvent>,EventListener,Serializable
- Enclosing interface:
- MouseEvents
- 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 static interface MouseEvents.DoubleClickListener
extends com.vaadin.flow.component.ComponentEventListener<MouseEvents.DoubleClickEvent>
Legacy interface for listening for a
MouseEvents.DoubleClickEvent fired by a
Component.- Author:
- Vaadin Ltd.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidCalled when aComponenthas been double clicked.default void
-
Method Details
-
onComponentEvent
- Specified by:
onComponentEventin interfacecom.vaadin.flow.component.ComponentEventListener<MouseEvents.DoubleClickEvent>
-
doubleClick
Called when aComponenthas been double clicked. A reference to the component is given byMouseEvents.DoubleClickEvent.getComponent().- Parameters:
event- An event containing information about the double click.
-