本文整理汇总了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());
}
示例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;
}
示例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());
}
示例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);
}
}
示例5: addAction
import com.intellij.openapi.diff.actions.MergeOperations; //导入依赖的package包/类
@Override
public void addAction(MergeOperations.Operation operation, int lineStartOffset) {
}