0

我正在尝试将 uml 文件与其本地历史进行比较。是否可以以编程方式进行?

4

1 回答 1

0

是的,但您必须找到合适的历史版本来与自己进行比较。

org.eclipse.core.resources.IFile.getHistory(IProgressMonitor)有关如何检索给定文件的本地历史记录的信息,请参阅。然后,您需要将这些修订作为 EMF 资源加载,以供 EMF Compare 使用。

类似以下内容应该可以帮助您入门:

String uri = "platform:/resource/project/path/to/file.ext";
IFile file = ResourcesPlugin.getWorkspace().getRoot().getFile(new Path(uri));
IFileState[] states = file.getHistory(new NullProgressMonitor());
if (states.length > 0) {
    IFileState lastFromHistory = states[0];
    ResourceSet set = new ResourceSetImpl();
    Resource res = set.createResource(URI.createURI(uri));
    res.load(lastFromHistory.getContents(), Collections.emptyMap());
}
于 2017-07-03T08:20:01.513 回答