1 /* $Id: ProtocolOperandDef.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 public interface ProtocolOperandDef extends ProtocolOperDef {6 /** Returns name of operation. Returns array with name elements specified in protocol7 * e.g. prov.get - 1st element of array = prov, 2nd element = get8 */9 public String [] operand() throws RemoteException ;10 public ProtocolMode operand_mode() throws RemoteException ;11 }12