All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sqlancer.common.ast.newast.NewBetweenOperatorNode Maven / Gradle / Ivy

Go to download

SQLancer finds logic bugs in Database Management Systems through automatic testing

There is a newer version: 2.0.0
Show newest version
package sqlancer.common.ast.newast;

public class NewBetweenOperatorNode implements Node {

    protected Node left;
    protected Node middle;
    protected Node right;
    protected boolean isTrue;

    public NewBetweenOperatorNode(Node left, Node middle, Node right, boolean isTrue) {
        this.left = left;
        this.middle = middle;
        this.right = right;
        this.isTrue = isTrue;
    }

    public Node getLeft() {
        return left;
    }

    public Node getMiddle() {
        return middle;
    }

    public Node getRight() {
        return right;
    }

    public boolean isTrue() {
        return isTrue;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy