Class EditorValueChangedEvent
java.lang.Object
de.espirit.firstspirit.client.access.editor.EditorValueChangedEvent
Event to inform interested objects of changes within an
EditorValue
. Provides a handle of the EditorValue
, the language in which the change took place, the name of the attribute that was changed, and the old and the new value.- Since:
- 4.0.17
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionEditorValue<?>
Provides the editor of the event.Provides the language the event happened in.Provides the new value after the change.Provides the old value prior to the change.
-
Constructor Details
-
EditorValueChangedEvent
public EditorValueChangedEvent()
-
-
Method Details
-
getEditor
Provides the editor of the event.- Returns:
- The editor.
- Since:
- 4.0.17
-
getLanguage
Provides the language the event happened in.- Returns:
- The language.
- Since:
- 4.0.17
-
getOldValue
Provides the old value prior to the change.- Returns:
- The old value.
- Since:
- 4.0.17
-
getNewValue
Provides the new value after the change.- Returns:
- The new value.
- Since:
- 4.0.17
-