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

sqlancer.common.ast.newast.NewTernaryNode 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 NewTernaryNode implements Node {

    protected final Node left;
    protected final Node middle;
    protected final Node right;
    private final String leftStr;
    private final String rightStr;

    public NewTernaryNode(Node left, Node middle, Node right, String leftStr, String rightStr) {
        this.left = left;
        this.middle = middle;
        this.right = right;
        this.leftStr = leftStr;
        this.rightStr = rightStr;
    }

    public Node getLeft() {
        return left;
    }

    public Node getMiddle() {
        return middle;
    }

    public Node getRight() {
        return right;
    }

    public String getLeftStr() {
        return leftStr;
    }

    public String getRightStr() {
        return rightStr;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy