KickJava   Java API By Example, From Geeks To Geeks.

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


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