1 /* $Id: ExprFixed.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 /** Fixed expression operand */ 6 public interface ExprFixed extends ExprOperandDef { 7 /** Value of this operand */ 8 public java.math.BigDecimal value() throws RemoteException; 9 /** Number of digits of this value */ 10 public int digits() throws RemoteException; 11 /** Scale of this value */ 12 public int scale() throws RemoteException; 13 } 14