/** An instance of a concrete subclass represents an operand that ** represents ant int value. ** ** @author R. McCloskey ** @version October 2008 */ public interface Operand extends Token { /** Reports the value of the operand @return the value of the operand */ int getValue(); }