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

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

There is a newer version: 2.12.15
Show newest version
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 ASTNode getRight() {
    return this.right;
  }

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

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

  public abstract void setRightMost(ASTNode right);

  public abstract ASTNode getRightMost();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy