Package se.conciliate.extensions.store
Interface MTEdit
public interface MTEdit
Common interface of edits to models, vertices, etc.
-
Method Summary
Modifier and TypeMethodDescriptionse.conciliate.mt.server.ValueMap
Returns this edit's value map or null if no value map is available for this edit.boolean
Tries to merge another edit into this one.void
save()
Saves this edit to storage.void
setExceptionHandler
(MTRemoteChangeHandler exceptionHandler)
-
Method Details
-
merge
Tries to merge another edit into this one. If the merge was successful then the other edit will not need to be saved separately.- Parameters:
other
- The other edit.- Returns:
true
if the merge was successful.
-
save
Saves this edit to storage.- Throws:
MTRemoteChangeException
-
setExceptionHandler
-
getEditValueMap
se.conciliate.mt.server.ValueMap getEditValueMap()Returns this edit's value map or null if no value map is available for this edit.- Returns:
- this edit's value map or null if no value map is available for this edit.
-