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.flow.component.
Class InputEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.vaadin.flow.component.ComponentEvent<Component>
-
- com.vaadin.flow.component.InputEvent
-
All Implemented Interfaces:
@DomEvent(value="input") public class InputEvent extends ComponentEvent<Component>
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 Constructor and Description InputEvent(Component source, boolean fromClient)
Creates a new input event.
-
Method Summary
-
Methods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, isFromClient, unregisterListener
-
Methods inherited from class java.util.EventObject
toString
-
-
-
-
Constructor Detail
-
InputEvent
public InputEvent(Component source, boolean fromClient)
Creates a new input event.
Parameters:
source
- the component that fired the eventfromClient
-true
if the event was originally fired on the client,false
if the event originates from server-side logic
-
-