use of org.eclipse.xtext.formatting2.debug.TextRegionsToString in project xtext-core by eclipse.
the class TextSegmentSet method toString.
@Override
public String toString() {
TextRegionsToString toString = new TextRegionsToString();
toString.setTitle(getClass().getSimpleName());
for (T t : this) toString.add(getRegion(t), getTitle(t));
return toString.toString();
}
Aggregations