com.freedomotic.rules.BinaryExpression Maven / Gradle / Ivy
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.freedomotic.rules;
/**
*
* @author nicoletti
*/
public abstract class BinaryExpression implements Expression {
private String left;
private String right;
public BinaryExpression(String left, String right) {
this.left = left;
this.right = right;
}
public String getLeft() {
return left;
}
public void setLeft(String left) {
this.left = left;
}
public String getRight() {
return right;
}
public void setRight(String right) {
this.right = right;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy