Class PropertyEditorChangeEvent
- java.lang.Object
-
- org.uberfire.ext.properties.editor.model.PropertyEditorChangeEvent
-
public class PropertyEditorChangeEvent extends Object
A Property Editor CDI event. Class that groups a PropertyEditorChangeEvent information. This event is fired by property editor when a fields has its value changed.
-
-
Constructor Summary
Constructors Constructor Description PropertyEditorChangeEvent(PropertyEditorFieldInfo property, String newValue)Creates a new PropertyEditorChangeEvent
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetNewValue()PropertyEditorFieldInfogetProperty()
-
-
-
Constructor Detail
-
PropertyEditorChangeEvent
public PropertyEditorChangeEvent(PropertyEditorFieldInfo property, String newValue)
Creates a new PropertyEditorChangeEvent- Parameters:
property- the property changednewValue- the new value of the field
-
-
Method Detail
-
getProperty
public PropertyEditorFieldInfo getProperty()
-
getNewValue
public String getNewValue()
-
-