本文整理匯總了Java中org.eclipse.text.edits.TextEdit.UPDATE_REGIONS屬性的典型用法代碼示例。如果您正苦於以下問題:Java TextEdit.UPDATE_REGIONS屬性的具體用法?Java TextEdit.UPDATE_REGIONS怎麽用?Java TextEdit.UPDATE_REGIONS使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.eclipse.text.edits.TextEdit
的用法示例。
在下文中一共展示了TextEdit.UPDATE_REGIONS屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createTextEditProcessor
private TextEditProcessor createTextEditProcessor(
IDocument document, int flags, TextEditBasedChangeGroup[] changes) {
if (fEdit == null) return new TextEditProcessor(document, new MultiTextEdit(0, 0), flags);
List includes = new ArrayList(0);
for (int c = 0; c < changes.length; c++) {
TextEditBasedChangeGroup change = changes[c];
Assert.isTrue(change.getTextEditChange() == this);
if (change.isEnabled()) {
includes.addAll(Arrays.asList(change.getTextEditGroup().getTextEdits()));
}
}
fCopier = new TextEditCopier(fEdit);
TextEdit copiedEdit = fCopier.perform();
boolean keep = getKeepPreviewEdits();
if (keep) flags = flags | TextEdit.UPDATE_REGIONS;
LocalTextEditProcessor result = new LocalTextEditProcessor(document, copiedEdit, flags);
result.setIncludes(
mapEdits((TextEdit[]) includes.toArray(new TextEdit[includes.size()]), fCopier));
if (!keep) fCopier = null;
return result;
}