Class MapPropertyAddEvent
- java.lang.Object
-
- com.vaadin.client.flow.reactive.ReactiveValueChangeEvent
-
- com.vaadin.client.flow.nodefeature.MapPropertyAddEvent
-
public class MapPropertyAddEvent extends ReactiveValueChangeEvent
Event fired when a property is added to aNodeMap.- Since:
- 1.0
- Author:
- Vaadin Ltd
-
-
Constructor Summary
Constructors Constructor Description MapPropertyAddEvent(NodeMap source, MapProperty property)Creates a new property add event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MapPropertygetProperty()Gets the added property.NodeMapgetSource()Gets the reactive value from which this event originates.
-
-
-
Constructor Detail
-
MapPropertyAddEvent
public MapPropertyAddEvent(NodeMap source, MapProperty property)
Creates a new property add event.- Parameters:
source- the changed mapproperty- the newly added property
-
-
Method Detail
-
getSource
public NodeMap getSource()
Description copied from class:ReactiveValueChangeEventGets the reactive value from which this event originates.- Overrides:
getSourcein classReactiveValueChangeEvent- Returns:
- the event source
-
getProperty
public MapProperty getProperty()
Gets the added property.- Returns:
- the added property
-
-