本文整理汇总了Java中com.intellij.history.integration.ui.models.EntireFileHistoryDialogModel类的典型用法代码示例。如果您正苦于以下问题:Java EntireFileHistoryDialogModel类的具体用法?Java EntireFileHistoryDialogModel怎么用?Java EntireFileHistoryDialogModel使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
EntireFileHistoryDialogModel类属于com.intellij.history.integration.ui.models包,在下文中一共展示了EntireFileHistoryDialogModel类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: revertToLabel
import com.intellij.history.integration.ui.models.EntireFileHistoryDialogModel; //导入依赖的package包/类
private void revertToLabel(@Nonnull Project project, @Nonnull VirtualFile f, @Nonnull LabelImpl impl) throws LocalHistoryException{
HistoryDialogModel dirHistoryModel = f.isDirectory()
? new DirectoryHistoryDialogModel(project, myGateway, myVcs, f)
: new EntireFileHistoryDialogModel(project, myGateway, myVcs, f);
int leftRev = findRevisionIndexToRevert(dirHistoryModel, impl);
if (leftRev < 0) {
throw new LocalHistoryException("Couldn't find label revision");
}
if (leftRev == 0) return; // we shouldn't revert because no changes found to revert;
try {
dirHistoryModel.selectRevisions(-1, leftRev - 1); //-1 because we should revert all changes up to previous one, but not label-related.
dirHistoryModel.createReverter().revert();
}
catch (IOException e) {
throw new LocalHistoryException(String.format("Couldn't revert %s to local history label.", f.getName()), e);
}
}
示例2: createModel
import com.intellij.history.integration.ui.models.EntireFileHistoryDialogModel; //导入依赖的package包/类
@Override
protected FileHistoryDialogModel createModel(LocalHistoryFacade vcs) {
return new EntireFileHistoryDialogModel(myProject, myGateway, vcs, myFile);
}
示例3: createFileModel
import com.intellij.history.integration.ui.models.EntireFileHistoryDialogModel; //导入依赖的package包/类
private FileHistoryDialogModel createFileModel(VirtualFile f) {
return new EntireFileHistoryDialogModel(myProject, myGateway, getVcs(), f);
}