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


Java DiffMarkup类代码示例

本文整理汇总了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());
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:12,代码来源:FragmentHighlighterImpl.java

示例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);
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:9,代码来源:FragmentHighlighterImpl.java

示例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());
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:11,代码来源:FragmentHighlighterImpl.java

示例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);
  }
}
 
开发者ID:consulo,项目名称:consulo,代码行数:9,代码来源:FragmentHighlighterImpl.java

示例5: FragmentHighlighterImpl

import com.intellij.openapi.diff.impl.highlighting.DiffMarkup; //导入依赖的package包/类
public FragmentHighlighterImpl(DiffMarkup appender1, DiffMarkup appender2) {
  myAppender1 = appender1;
  myAppender2 = appender2;
  myIsLast = false;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:6,代码来源:FragmentHighlighterImpl.java


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