KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > Connector > EEG > EEM > Actions > IDLIfaceWriterDirectorBase


1 /*
2  * IDLIfaceWriterDirectorBase.java
3  *
4  * Created on 13. duben 2002, 21:08
5  */

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

18 public class IDLIfaceWriterDirectorBase implements IDLWriterDirector {
19     protected SOFA.Connector.Property[] params;
20     protected String JavaDoc ifaceCDL;
21
22     /** Creates new IDLIfaceWriterDirectorBase */
23     public IDLIfaceWriterDirectorBase(String JavaDoc ifaceCDL, SOFA.Connector.Property[] params) {
24         this.ifaceCDL=ifaceCDL;
25         this.params=params;
26     }
27     
28     public String JavaDoc getOperation(OperationDef method) throws IDLWriterDirectorException {
29         return IDLIfaceCN.getOperationDef(method);
30     }
31      
32     public String JavaDoc getInterfaceBody() throws IDLWriterDirectorException {
33         return null;
34     }
35      
36     public String JavaDoc[] getExtends() throws IDLWriterDirectorException {
37         return null;
38     }
39      
40 }
41
Popular Tags