1 /*2 * IDLWriterDirector.java3 *4 * Created on 13. duben 2002, 13:165 */6 7 package SOFA.Connector.EEG.CodeWriter;8 9 import SOFA.SOFAnode.Made.TIR.OperationDef;10 11 /**12 *13 * @author ghort14 * @version 15 */16 public interface IDLWriterDirector {17 18 String [] getExtends() throws IDLWriterDirectorException;19 String getInterfaceBody() throws IDLWriterDirectorException;20 String getOperation(OperationDef method) throws IDLWriterDirectorException;21 }22 23