cdc.applic.expressions.ast.AndNode 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;
public final class AndNode extends AbstractBinaryNode {
public static final String KIND = "AND";
public AndNode(Node alpha,
Node beta) {
super(alpha,
beta);
}
@Override
public String getKind() {
return KIND;
}
@Override
public NodeKerning getKerning() {
return NodeKerning.KERNING_AND;
}
@Override
public AndNode create(Node alpha,
Node beta) {
return new AndNode(alpha, beta);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy