cdc.applic.expressions.ast.AbstractNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-expressions Show documentation
Show all versions of cdc-applic-expressions Show documentation
Applicabilities Expressions.
The newest version!
package cdc.applic.expressions.ast;
import cdc.applic.expressions.Formatting;
import cdc.util.lang.Checks;
abstract class AbstractNode implements Node {
@Override
public final String toInfix(Formatting formatting) {
Checks.isNotNull(formatting, "formatting");
final StringBuilder builder = new StringBuilder();
buildInfix(formatting, builder);
return builder.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy