it.xsemantics.runtime.RuleEnvironmentEntry Maven / Gradle / Ivy
package it.xsemantics.runtime;
/**
* This will be used to store the runtime representation of a TypingStatement
* into an environment
*
* @author Lorenzo Bettini
*
*/
public class RuleEnvironmentEntry {
Object left;
Object right;
public RuleEnvironmentEntry(Object left, Object right) {
super();
this.left = left;
this.right = right;
}
public Object getLeft() {
return left;
}
public Object getRight() {
return right;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy