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


Java TextEditGroup.clearTextEdits方法代码示例

本文整理汇总了Java中org.eclipse.text.edits.TextEditGroup.clearTextEdits方法的典型用法代码示例。如果您正苦于以下问题:Java TextEditGroup.clearTextEdits方法的具体用法?Java TextEditGroup.clearTextEdits怎么用?Java TextEditGroup.clearTextEdits使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.eclipse.text.edits.TextEditGroup的用法示例。


在下文中一共展示了TextEditGroup.clearTextEdits方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: replaceTextEdit

import org.eclipse.text.edits.TextEditGroup; //导入方法依赖的package包/类
/**
 * Replaces an existing TextEdit (which is reachable from the given list of
 * TextEditGroups) with another TextEdit.
 * <p>
 * If the TextEdit is a root of a TextEdit tree, the TextEditGroup's reference
 * will be updated. If it is not a root, its parent TextEdit's reference will
 * be updated.
 * 
 * @return whether a replacement occurred
 */
public static boolean replaceTextEdit(List<TextEditGroup> textEditGroups,
    TextEdit oldEdit, TextEdit newEdit) {

  TextEdit parentEdit = oldEdit.getParent();
  if (parentEdit != null) {
    // This is not a root edit, so just replace the edit in the parent
    return replaceTextEdit(parentEdit, oldEdit, newEdit);
  }

  // This is a root edit, find the corresponding group and replace it there
  for (TextEditGroup group : textEditGroups) {
    TextEdit[] edits = group.getTextEdits();
    if (!replaceTextEdit(oldEdit, newEdit, edits)) {
      return false;
    }

    // Replace text edits, in order
    group.clearTextEdits();
    // We already swapped the edit in the edits array, add the array back
    for (TextEdit edit : edits) {
      group.addTextEdit(edit);
    }
  }

  return true;
}
 
开发者ID:gwt-plugins,项目名称:gwt-eclipse-plugin,代码行数:37,代码来源:TextEditUtilities.java

示例2: clearGroupDescriptionEdits

import org.eclipse.text.edits.TextEditGroup; //导入方法依赖的package包/类
private void clearGroupDescriptionEdits() {
	for (Iterator<TextEditGroup> iter= fTextEditGroups.iterator(); iter.hasNext();) {
		TextEditGroup group= iter.next();
		group.clearTextEdits();
	}
}
 
开发者ID:eclipse,项目名称:eclipse.jdt.ls,代码行数:7,代码来源:CompilationUnitRewrite.java

示例3: clearGroupDescriptionEdits

import org.eclipse.text.edits.TextEditGroup; //导入方法依赖的package包/类
private void clearGroupDescriptionEdits() {
  for (Iterator<TextEditGroup> iter = fTextEditGroups.iterator(); iter.hasNext(); ) {
    TextEditGroup group = iter.next();
    group.clearTextEdits();
  }
}
 
开发者ID:eclipse,项目名称:che,代码行数:7,代码来源:CompilationUnitRewrite.java

示例4: clearGroupDescriptions

import org.eclipse.text.edits.TextEditGroup; //导入方法依赖的package包/类
public void clearGroupDescriptions() {
	for (Iterator<TextEditGroup> iter= fTextEditGroups.iterator(); iter.hasNext();) {
		TextEditGroup group= iter.next();
		group.clearTextEdits();
	}
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion-Juno38,代码行数:7,代码来源:CompilationUnitRewrite.java


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