1 /* $Id: FixedDef.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 type */6 public interface FixedDef extends CDLType {7 /** Number of the digits of this type */8 public ExprOperDef digits() throws RemoteException ;9 /** Scake of this type. */10 public ExprOperDef scale() throws RemoteException ;11 }12