KickJava   Java API By Example, From Geeks To Geeks.

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


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