KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > Connector > EEG > CodeWriter > JWriterDirector


1 /*
2  * JWriterDirector.java
3  *
4  * Created on 13. duben 2002, 13:16
5  */

6
7 package SOFA.Connector.EEG.CodeWriter;
8
9 import SOFA.SOFAnode.Made.TIR.OperationDef;
10
11 /**
12  *
13  * @author ghort
14  * @version
15  */

16 public interface JWriterDirector {
17
18     String JavaDoc[] getImplements() throws JWriterDirectorException;
19     String JavaDoc getExtends() throws JWriterDirectorException;
20     
21     String JavaDoc getClassBody() throws JWriterDirectorException;
22     String JavaDoc getMethodDef(OperationDef method) throws JWriterDirectorException;
23     String JavaDoc getMethodBody(OperationDef method) throws JWriterDirectorException;
24     boolean defaultImplements();
25 }
26
27
Popular Tags