Class EditorValueChangedEvent

java.lang.Object
de.espirit.firstspirit.client.access.editor.EditorValueChangedEvent

public class EditorValueChangedEvent extends Object
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 Details

    • EditorValueChangedEvent

      public EditorValueChangedEvent()
  • Method Details

    • getEditor

      public EditorValue<?> getEditor()
      Provides the editor of the event.
      Returns:
      The editor.
      Since:
      4.0.17
    • getLanguage

      public Language getLanguage()
      Provides the language the event happened in.
      Returns:
      The language.
      Since:
      4.0.17
    • getOldValue

      public Object getOldValue()
      Provides the old value prior to the change.
      Returns:
      The old value.
      Since:
      4.0.17
    • getNewValue

      public Object getNewValue()
      Provides the new value after the change.
      Returns:
      The new value.
      Since:
      4.0.17