1 26 27 package org.objectweb.openccm.task; 28 29 import java.util.Map ; 31 32 40 public class CIDLtoCIDL 41 extends CompilerBase 42 implements Runnable 43 { 44 50 51 private String dest_file_; 52 53 59 64 public CIDLtoCIDL(Map project_properties) 65 { 66 super(project_properties); 68 69 dest_file_ = "generated.cidl"; 71 } 72 73 79 85 88 public void 89 configure() 90 { 91 super.configure(); 93 94 setXmlFile( project_properties_.getProperty("OpenCCM_HOMEDIR") + "/xml/launcher/CIDLtoCIDL.xml" ); 95 96 addArgument("-o"); 98 addArgument(dest_file_); 99 } 100 101 106 public void 107 setDestfile(String filename) 108 { 109 dest_file_ = filename; 110 } 111 112 } 113 | Popular Tags |