use of org.eclipse.wst.sse.core.internal.format.StructuredFormatContraints in project webtools.sourceediting by eclipse.
the class NodeFormatter method getFormatContraints.
public IStructuredFormatContraints getFormatContraints() {
if (fFormatContraints == null) {
fFormatContraints = new StructuredFormatContraints();
fFormatContraints.setClearAllBlankLines(getFormatPreferences().getClearAllBlankLines());
}
return fFormatContraints;
}
Aggregations