// file Constant.java public class Constant extends ExpTree { public Constant(Integer a) { super(a); } public Object evaluate() { return (Integer) getValue(); } public String display() { return getValue().toString(); } }