Interface MTEdit


public interface MTEdit
Common interface of edits to models, vertices, etc.
  • Method Summary

    Modifier and Type
    Method
    Description
    se.conciliate.mt.server.ValueMap
    Returns this edit's value map or null if no value map is available for this edit.
    boolean
    merge(MTEdit other)
    Tries to merge another edit into this one.
    void
    Saves this edit to storage.
    void
     
  • Method Details

    • merge

      boolean merge(MTEdit other)
      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

      void save() throws MTRemoteChangeException
      Saves this edit to storage.
      Throws:
      MTRemoteChangeException
    • setExceptionHandler

      void setExceptionHandler(MTRemoteChangeHandler exceptionHandler)
    • 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.