package jetbrains.mps.vcs.platform.integration; /*Generated by MPS */ import com.intellij.diff.contents.DiffContentBase; import org.jetbrains.mps.openapi.model.SModel; import org.jetbrains.annotations.Nullable; import com.intellij.openapi.fileTypes.FileType; public class ModelDiffContent extends DiffContentBase { private SModel myModel; public ModelDiffContent(SModel model) { myModel = model; } public SModel getModel() { return myModel; } @Nullable public FileType getContentType() { return null; } }