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