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

org.mvel2.ast.BooleanNode Maven / Gradle / Ivy

package org.mvel2.ast;

import org.mvel2.ParserContext;

public abstract class BooleanNode extends ASTNode {

    protected ASTNode left;
    protected ASTNode right;

    protected BooleanNode(ParserContext pCtx) {
        super(pCtx);
    }

    public ASTNode getLeft() {
        return this.left;
    }

    public void setLeft(ASTNode node) {
        this.left = node;
    }

    public ASTNode getRight() {
        return this.right;
    }

    public void setRight(ASTNode node) {
        this.right = node;
    }

    public abstract ASTNode getRightMost();

    public abstract void setRightMost(ASTNode right);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy