use of org.eclipse.ltk.core.refactoring.CategorizedTextEditGroup in project che by eclipse.
the class CompilationUnitRewrite method createCategorizedGroupDescription.
public CategorizedTextEditGroup createCategorizedGroupDescription(String name, GroupCategorySet set) {
CategorizedTextEditGroup result = new CategorizedTextEditGroup(name, set);
fTextEditGroups.add(result);
return result;
}
Aggregations