本文整理汇总了Java中com.intellij.openapi.diff.impl.util.DocumentUtil类的典型用法代码示例。如果您正苦于以下问题:Java DocumentUtil类的具体用法?Java DocumentUtil怎么用?Java DocumentUtil使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
DocumentUtil类属于com.intellij.openapi.diff.impl.util包,在下文中一共展示了DocumentUtil类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: modifyDocument
import com.intellij.openapi.diff.impl.util.DocumentUtil; //导入依赖的package包/类
/**
* Applies the text from the original marker to the target marker.
* @return the resulting TextRange from the target document, or null if the document if not writable.
*/
@Nullable
private static TextRange modifyDocument(@Nullable Project project, @NotNull RangeMarker original, @NotNull RangeMarker target) {
Document document = target.getDocument();
if (project != null && !ReadonlyStatusHandler.ensureDocumentWritable(project, document)) {
return null;
}
if (DocumentUtil.isEmpty(original)) {
int offset = target.getStartOffset();
document.deleteString(offset, target.getEndOffset());
}
CharSequence text = original.getDocument().getImmutableCharSequence().subSequence(original.getStartOffset(), original.getEndOffset());
int startOffset = target.getStartOffset();
if (DocumentUtil.isEmpty(target)) {
document.insertString(startOffset, text);
} else {
document.replaceString(startOffset, target.getEndOffset(), text);
}
return new TextRange(startOffset, startOffset + text.length());
}
示例2: modifyDocument
import com.intellij.openapi.diff.impl.util.DocumentUtil; //导入依赖的package包/类
/**
* Applies the text from the original marker to the target marker.
* @return the resulting TextRange from the target document, or null if the document if not writable.
*/
@Nullable
private static TextRange modifyDocument(@NotNull Project project, @NotNull RangeMarker original, @NotNull RangeMarker target) {
Document document = target.getDocument();
if (!ReadonlyStatusHandler.ensureDocumentWritable(project, document)) { return null; }
if (DocumentUtil.isEmpty(original)) {
int offset = target.getStartOffset();
document.deleteString(offset, target.getEndOffset());
}
String text = DocumentUtil.getText(original);
int startOffset = target.getStartOffset();
if (DocumentUtil.isEmpty(target)) {
document.insertString(startOffset, text);
} else {
document.replaceString(startOffset, target.getEndOffset(), text);
}
return new TextRange(startOffset, startOffset + text.length());
}
示例3: modifyDocument
import com.intellij.openapi.diff.impl.util.DocumentUtil; //导入依赖的package包/类
/**
* Applies the text from the original marker to the target marker.
* @return the resulting TextRange from the target document, or null if the document if not writable.
*/
@Nullable
private static TextRange modifyDocument(@Nonnull Project project, @Nonnull RangeMarker original, @Nonnull RangeMarker target) {
Document document = target.getDocument();
if (!ReadonlyStatusHandler.ensureDocumentWritable(project, document)) { return null; }
if (DocumentUtil.isEmpty(original)) {
int offset = target.getStartOffset();
document.deleteString(offset, target.getEndOffset());
}
String text = DocumentUtil.getText(original);
int startOffset = target.getStartOffset();
if (DocumentUtil.isEmpty(target)) {
document.insertString(startOffset, text);
} else {
document.replaceString(startOffset, target.getEndOffset(), text);
}
return new TextRange(startOffset, startOffset + text.length());
}
示例4: getStartLine
import com.intellij.openapi.diff.impl.util.DocumentUtil; //导入依赖的package包/类
public int getStartLine() {
return DocumentUtil.getStartLine(getRange());
}
示例5: getEndLine
import com.intellij.openapi.diff.impl.util.DocumentUtil; //导入依赖的package包/类
public int getEndLine() {
return DocumentUtil.getEndLine(getRange());
}
示例6: getText
import com.intellij.openapi.diff.impl.util.DocumentUtil; //导入依赖的package包/类
public String getText() {
return DocumentUtil.getText(getRange());
}