KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * JIfaceWriterDirectorBase.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.JWriterDirectorException;
10 import SOFA.Connector.EEG.CodeWriter.JWriterInterfaceDirector;
11 import SOFA.SOFAnode.Made.TIR.OperationDef;
12
13 /**
14  *
15  * @author ghort
16  * @version
17  */

18 public class JIfaceWriterDirectorBase implements JWriterInterfaceDirector {
19     protected SOFA.Connector.Property[] params;
20     protected String JavaDoc ifaceCDL;
21
22     /** Creates new JIfaceWriterDirectorBase */
23     public JIfaceWriterDirectorBase(String JavaDoc ifaceCDL, SOFA.Connector.Property[] params) {
24         this.ifaceCDL=ifaceCDL;
25         this.params=params;
26     }
27     
28     public String JavaDoc getMethod(OperationDef method) throws JWriterDirectorException {
29         return JIfaceNormal.getMethodDef(method);
30     }
31      
32     public String JavaDoc[] getImplements() throws JWriterDirectorException {
33         return null;
34     }
35      
36     public String JavaDoc getInterfaceBody() throws JWriterDirectorException {
37         return null;
38     }
39      
40     public String JavaDoc[] getExtends() throws JWriterDirectorException {
41         return null;
42     }
43      
44 }
45
Popular Tags