1 /* $Id: ExprConstant.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */2 package SOFA.SOFAnode.Made.TIR;3 import java.rmi.RemoteException ;4 5 /** Constant in expression operand. */6 public interface ExprConstant extends ExprOperandDef {7 /** Specified constant */8 public ConstantDef ref_const() throws RemoteException ;9 }10