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