本文整理汇总了Java中org.eclipse.ltk.core.refactoring.TextChange.getCurrentDocument方法的典型用法代码示例。如果您正苦于以下问题:Java TextChange.getCurrentDocument方法的具体用法?Java TextChange.getCurrentDocument怎么用?Java TextChange.getCurrentDocument使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.ltk.core.refactoring.TextChange
的用法示例。
在下文中一共展示了TextChange.getCurrentDocument方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: removeKeys
import org.eclipse.ltk.core.refactoring.TextChange; //导入方法依赖的package包/类
public static Change removeKeys(IPath propertyFilePath, List<String> keys) throws CoreException {
String name= Messages.format(NLSMessages.NLSPropertyFileModifier_remove_from_property_file, BasicElementLabels.getPathLabel(propertyFilePath, false));
TextChange textChange= new TextFileChange(name, getPropertyFile(propertyFilePath));
textChange.setTextType("properties"); //$NON-NLS-1$
PropertyFileDocumentModel model= new PropertyFileDocumentModel(textChange.getCurrentDocument(new NullProgressMonitor()));
for (Iterator<String> iterator= keys.iterator(); iterator.hasNext();) {
String key= iterator.next();
TextEdit edit= model.remove(key);
if (edit != null) {
TextChangeCompatibility.addTextEdit(textChange, Messages.format(NLSMessages.NLSPropertyFileModifier_remove_entry, BasicElementLabels.getJavaElementName(key)), edit);
}
}
return textChange;
}
示例2: addChanges
import org.eclipse.ltk.core.refactoring.TextChange; //导入方法依赖的package包/类
private static void addChanges(TextChange textChange, NLSSubstitution[] substitutions) throws CoreException {
PropertyFileDocumentModel model= new PropertyFileDocumentModel(textChange.getCurrentDocument(new NullProgressMonitor()));
Map<String, NLSSubstitution> newKeyToSubstMap= getNewKeyToSubstitutionMap(substitutions);
Map<String, NLSSubstitution> oldKeyToSubstMap= getOldKeyToSubstitutionMap(substitutions);
addInsertEdits(textChange, substitutions, newKeyToSubstMap, oldKeyToSubstMap, model);
addRemoveEdits(textChange, substitutions, newKeyToSubstMap, oldKeyToSubstMap, model);
addReplaceEdits(textChange, substitutions, newKeyToSubstMap, oldKeyToSubstMap, model);
}
示例3: getAdditionalProposalInfo
import org.eclipse.ltk.core.refactoring.TextChange; //导入方法依赖的package包/类
@Override
public Object getAdditionalProposalInfo(IProgressMonitor monitor) {
final StringBuffer buf= new StringBuffer();
try {
for (int i= 0; i < fChanges.length; i++) {
if (fChanges[i] instanceof TextChange) {
TextChange change= (TextChange) fChanges[i];
String filename= getFileName(change);
if (filename != null) {
buf.append("<b>"); //$NON-NLS-1$
buf.append(filename);
buf.append("</b>"); //$NON-NLS-1$
buf.append("<br>"); //$NON-NLS-1$
}
change.setKeepPreviewEdits(true);
IDocument currentContent= change.getCurrentDocument(monitor);
TextEdit rootEdit= change.getEdit();
EditAnnotator ea= new EditAnnotator(buf, currentContent) {
@Override
protected boolean rangeRemoved(TextEdit edit) {
return annotateEdit(edit, "<del>", "</del>"); //$NON-NLS-1$ //$NON-NLS-2$
}
};
rootEdit.accept(ea);
ea.unchangedUntil(currentContent.getLength()); // Final pre-existing region
buf.append("<br><br>"); //$NON-NLS-1$
}
}
} catch (CoreException e) {
JavaPlugin.log(e);
}
return buf.toString();
}
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion,代码行数:38,代码来源:PropertiesQuickAssistProcessor.java