Rev 1611 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1578 | - | 1 | package dongfang.mkt.main; |
2 | |||
3 | import java.io.IOException; |
||
4 | |||
1611 | - | 5 | import dongfang.mkt.configuration.ConfigurationSet; |
6 | import dongfang.mkt.configuration.ParameterSet; |
||
1578 | - | 7 | |
8 | public class CodeGenerator { |
||
9 | static void generateDynamicSubstitutionCode(int paramSetVersion) throws IOException { |
||
1688 | - | 10 | ConfigurationSet cs = ParameterSet.parseXMLParameterSet(paramSetVersion); |
1578 | - | 11 | System.out.println(cs.generateDynamicSubstitutionCode()); |
12 | } |
||
13 | |||
14 | public static void main (String[] args) throws IOException { |
||
15 | CodeGenerator.generateDynamicSubstitutionCode(3); |
||
16 | } |
||
17 | } |