Interface EditorListener
- All Known Subinterfaces:
EditorHelper.LanguageAwareEditorListener
- All Known Implementing Classes:
ComponentInjectorHelper.ContentEditorListener
public interface EditorListener
Receives updates when an
editor's value has changed in some way. The general purpose is to hide editor
specific implementation details from the user e.g. which events are relevant etc.-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoidactionPerformed(String actionCode) Called when a special action is performedvoidvalueChanged(Object value) Called when aneditor's value has changed.
-
Field Details
-
ENTER_PRESSED
- See Also:
-
ESCAPE_PRESSED
- See Also:
-
OPEN_EXTERNAL_CLICKED
- See Also:
-
CANCEL_CLICKED
- See Also:
-
FORCE_SAVE_CLICKED
- See Also:
-
-
Method Details
-
valueChanged
Called when aneditor's value has changed.- Parameters:
value- the new value
-
actionPerformed
Called when a special action is performed- Parameters:
actionCode- the unique action code
-