1 /* $Id: ParamDescr.java,v 1.2 2004/05/20 14:23:52 bures Exp $ */2 package SOFA.SOFAnode.Made.TIR;3 import java.rmi.RemoteException ;4 5 /** Interface for the operation's prameters. */6 public interface ParamDescr extends TIRObject {7 /** Name of this parametr */8 public String name() throws RemoteException ;9 /** Type of this operation */10 public CDLType type() throws RemoteException ;11 /** Mode of this operation */12 public ParamMode mode() throws RemoteException ;13 }14