1 /*2 * JWriterInterfaceDirector.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 JWriterInterfaceDirector {17 18 String [] getImplements() throws JWriterDirectorException;19 String [] getExtends() throws JWriterDirectorException;20 21 String getInterfaceBody() throws JWriterDirectorException;22 String getMethod(OperationDef method) throws JWriterDirectorException;23 }24 25