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.ValueMapReturns this edit's value map or null if no value map is available for this edit.booleanTries to merge another edit into this one.voidsave()Saves this edit to storage.voidsetExceptionHandler(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:
trueif 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.
-