1 26 27 package org.objectweb.corba.command.api; 28 29 import org.objectweb.openccm.ast.api.FileScope; 31 import org.objectweb.openccm.command.api.Compiler; 32 import org.objectweb.openccm.command.api.Generator; 33 34 42 43 public interface CIDLtoCIF 44 extends Compiler , 45 Generator 46 { 47 52 public String 53 getCIFOutputDirectory(); 54 55 60 public String 61 getDependenciesOutputDirectory(); 62 63 68 public String [] 69 getNoPrefix(); 70 71 86 public boolean 87 generate_cif(FileScope filescope, 88 String inputfile, 89 String outputfile, 90 String base_dir, 91 String [] userIncludes); 92 93 105 public boolean 106 generate_cif_dependencies(FileScope filescope, 107 String base_dir, 108 String [] unwanted_prefixs); 109 } 110 | Popular Tags |