当前位置: 首页>>代码示例>>Java>>正文


Java MergeOperations类代码示例

本文整理汇总了Java中com.intellij.openapi.diff.actions.MergeOperations的典型用法代码示例。如果您正苦于以下问题:Java MergeOperations类的具体用法?Java MergeOperations怎么用?Java MergeOperations使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


MergeOperations类属于com.intellij.openapi.diff.actions包,在下文中一共展示了MergeOperations类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: addModifyActions

import com.intellij.openapi.diff.actions.MergeOperations; //导入依赖的package包/类
private static void addModifyActions(final LineFragment fragment, DiffMarkup wrapper, DiffMarkup otherWrapper) {
  if (fragment.isEqual()) return;
  if (fragment.isHasLineChildren()) return;
  FragmentSide side = wrapper.getSide();
  TextRange range = fragment.getRange(side);
  TextRange otherRange = fragment.getRange(side.otherSide());
  Document document = wrapper.getDocument();
  Document otherDocument = otherWrapper.getDocument();
  wrapper.addAction(MergeOperations.mostSensible(document, otherDocument, range, otherRange, side), range.getStartOffset());
  otherWrapper.addAction(MergeOperations.mostSensible(otherDocument, document, otherRange, range, side.otherSide()), otherRange.getStartOffset());
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:12,代码来源:FragmentHighlighterImpl.java

示例2: createAction

import com.intellij.openapi.diff.actions.MergeOperations; //导入依赖的package包/类
@Nullable
private RangeHighlighter createAction(@Nullable MergeOperations.Operation operation, int lineStartOffset) {
  MarkupModel markupModel = getMarkupModel();
  if (operation == null || markupModel == null) {
    return null;
  }
  RangeHighlighter highlighter = markupModel.addRangeHighlighter(lineStartOffset, lineStartOffset, HighlighterLayer.ADDITIONAL_SYNTAX,
                                                                 new TextAttributes(null, null, null, null, Font.PLAIN),
                                                                 HighlighterTargetArea.LINES_IN_RANGE);
  final MergeActionGroup.OperationAction action = new MergeActionGroup.OperationAction(operation);
  highlighter.setGutterIconRenderer(new GutterActionRenderer(action));
  return highlighter;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:14,代码来源:DiffMarkup.java

示例3: addModifyActions

import com.intellij.openapi.diff.actions.MergeOperations; //导入依赖的package包/类
private static void addModifyActions(final LineFragment fragment, DiffMarkup wrapper, DiffMarkup otherWrapper) {
  if (fragment.isEqual()) return;
  if (fragment.isHasLineChildren()) return;
  TextRange range = fragment.getRange(wrapper.getSide());
  TextRange otherRange = fragment.getRange(wrapper.getSide().otherSide());
  Document document = wrapper.getDocument();
  Document otherDocument = otherWrapper.getDocument();
  wrapper.addAction(MergeOperations.mostSensible(document, otherDocument, range, otherRange), range.getStartOffset());
  otherWrapper.addAction(MergeOperations.mostSensible(otherDocument, document, otherRange, range), otherRange.getStartOffset());
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:11,代码来源:FragmentHighlighterImpl.java

示例4: addAction

import com.intellij.openapi.diff.actions.MergeOperations; //导入依赖的package包/类
public void addAction(@Nullable MergeOperations.Operation operation, int lineStartOffset) {
  RangeHighlighter highlighter = createAction(operation, lineStartOffset);
  if (highlighter != null) {
    myActionHighlighters.add(highlighter);
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:7,代码来源:DiffMarkup.java

示例5: addAction

import com.intellij.openapi.diff.actions.MergeOperations; //导入依赖的package包/类
@Override
public void addAction(MergeOperations.Operation operation, int lineStartOffset) {
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:4,代码来源:ChangesDiffCalculator.java


注:本文中的com.intellij.openapi.diff.actions.MergeOperations类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。