1 /*2 * JWriterDirector.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 JWriterDirector {17 18 String [] getImplements() throws JWriterDirectorException;19 String getExtends() throws JWriterDirectorException;20 21 String getClassBody() throws JWriterDirectorException;22 String getMethodDef(OperationDef method) throws JWriterDirectorException;23 String getMethodBody(OperationDef method) throws JWriterDirectorException;24 boolean defaultImplements();25 }26 27