com.vaadin.flow.component.internal.
Class CompositionEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.vaadin.flow.component.ComponentEvent<Component>
-
- com.vaadin.flow.component.internal.CompositionEvent
-
All Implemented Interfaces:
Direct Known Subclasses:
CompositionEndEvent, CompositionStartEvent, CompositionUpdateEvent
public abstract class CompositionEvent extends ComponentEvent<Component>
Abstract class for composition events.
Since:
1.0
Author:
Vaadin Ltd
See Also:
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor and Description CompositionEvent(Component source)
Creates a new server-side composition event with no additional information.
CompositionEvent(Component source, boolean fromClient, String data, String locale)
Creates a new composition event.
-
Method Summary
All Methods Modifier and Type Method and Description String
getData()
Gets the string being composed.
Optional<Locale>
getLocale()
Gets the optional
Locale
of the event.-
Methods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, isFromClient, unregisterListener
-
Methods inherited from class java.util.EventObject
toString
-
-
-
-
Constructor Detail
-
CompositionEvent
public CompositionEvent(Component source, boolean fromClient, String data, String locale)
Creates a new composition 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 logicdata
- the string being composedlocale
- language code for the composition event, if available; otherwise, the empty string
-
CompositionEvent
public CompositionEvent(Component source)
Creates a new server-side composition event with no additional information.
Parameters:
source
- the component that fired the event
-
-