Package de.espirit.firstspirit.storage
Interface DataChangeDetail
- All Superinterfaces:
RevisionChangeDetail
,Serializable
This interface indicates changes in
content form data
or
meta form data
on a belonging store element.
It provides detail information about the type of changes.- Since:
- 4.0.90
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic enum
Flag identifiying the change type.static interface
This interface represents one editor/variable change in aform data object
-
Method Summary
Modifier and TypeMethodDescriptionReturns the change flag of the underlying data change.
DataChangeDetail.ChangeFlag.ADDED
if the belonging data xml was initially createdDataChangeDetail.ChangeFlag.CHANGED
if the belonging data xml has been changedReturns an unmodifiable map of editor changes.
Key: Editor/Variable name
Value: EditorChangeMethods inherited from interface de.espirit.firstspirit.storage.RevisionChangeDetail
getChangeType
-
Method Details
-
getChangeFlag
DataChangeDetail.ChangeFlag getChangeFlag()Returns the change flag of the underlying data change.
DataChangeDetail.ChangeFlag.ADDED
if the belonging data xml was initially createdDataChangeDetail.ChangeFlag.CHANGED
if the belonging data xml has been changed
- Returns:
- the change flag of this data change.
- Since:
- 4.0.90
-
getEditorChanges
Map<String,DataChangeDetail.EditorChange> getEditorChanges()Returns an unmodifiable map of editor changes.
Key: Editor/Variable name
Value: EditorChange- Since:
- 4.0.90
-