本文整理汇总了Java中com.intellij.openapi.diff.impl.highlighting.DiffMarkup类的典型用法代码示例。如果您正苦于以下问题:Java DiffMarkup类的具体用法?Java DiffMarkup怎么用?Java DiffMarkup使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
DiffMarkup类属于com.intellij.openapi.diff.impl.highlighting包,在下文中一共展示了DiffMarkup类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addModifyActions
import com.intellij.openapi.diff.impl.highlighting.DiffMarkup; //导入依赖的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: addSeparatingLine
import com.intellij.openapi.diff.impl.highlighting.DiffMarkup; //导入依赖的package包/类
private static void addSeparatingLine(@NotNull LineFragment fragment, @NotNull DiffMarkup appender, int startLine, int endLine) {
if (endLine <= 0) return;
TextDiffTypeEnum type = fragment.getType();
appender.addLineMarker(endLine - 1, type == null ? null : DiffUtil.makeTextDiffType(fragment), SeparatorPlacement.BOTTOM);
if (fragment.getRange(appender.getSide()).getLength() > 0 && startLine > 0) {
appender.addLineMarker(startLine, type == null ? null : DiffUtil.makeTextDiffType(fragment), SeparatorPlacement.TOP);
}
}
示例3: addModifyActions
import com.intellij.openapi.diff.impl.highlighting.DiffMarkup; //导入依赖的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: addSeparatingLine
import com.intellij.openapi.diff.impl.highlighting.DiffMarkup; //导入依赖的package包/类
private static void addSeparatingLine(@Nonnull LineFragment fragment, @Nonnull DiffMarkup appender, int startLine, int endLine) {
if (endLine <= 0) return;
TextDiffTypeEnum type = fragment.getType();
appender.addLineMarker(endLine - 1, type == null ? null : DiffUtil.makeTextDiffType(fragment), SeparatorPlacement.BOTTOM);
if (fragment.getRange(appender.getSide()).getLength() > 0 && startLine > 0) {
appender.addLineMarker(startLine, type == null ? null : DiffUtil.makeTextDiffType(fragment), SeparatorPlacement.TOP);
}
}
示例5: FragmentHighlighterImpl
import com.intellij.openapi.diff.impl.highlighting.DiffMarkup; //导入依赖的package包/类
public FragmentHighlighterImpl(DiffMarkup appender1, DiffMarkup appender2) {
myAppender1 = appender1;
myAppender2 = appender2;
myIsLast = false;
}