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