Package com.vaadin.flow.component
Class InputEvent
- All Implemented Interfaces:
Serializable
Event fired when the component has received any type of input (e.g. click,
key press).
This event is specifically intended to the used for the input
event in the DOM API.
- Since:
- 1.0
- Author:
- Vaadin Ltd
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, isFromClient, unregisterListenerMethods inherited from class java.util.EventObject
toString
-
Constructor Details
-
InputEvent
Creates a new input event.- Parameters:
source- the component that fired the eventfromClient-trueif the event was originally fired on the client,falseif the event originates from server-side logic
-