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

spoon.examples.visitor.src.expression.BinaryOperatorExpression Maven / Gradle / Ivy

The newest version!
package spoon.examples.visitor.src.expression;


public class BinaryOperatorExpression implements Expression {
    
    public BinaryOperatorExpression(Expression left,Expression right) {
        this.left=left;
        this.right=right;
    }
    
    Expression left;
    Expression right;

    public Expression getLeft() {
        return left;
    }
    
    public void setLeft(Expression left) {
        this.left = left;
    }
    
    public Expression getRight() {
        return right;
    }
    
    public void setRight(Expression right) {
        this.right = right;
    }
    

    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy