Rev 1611 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1611 | Rev 1688 | ||
---|---|---|---|
Line 5... | Line 5... | ||
5 | import dongfang.mkt.configuration.ConfigurationSet; |
5 | import dongfang.mkt.configuration.ConfigurationSet; |
6 | import dongfang.mkt.configuration.ParameterSet; |
6 | import dongfang.mkt.configuration.ParameterSet; |
Line 7... | Line 7... | ||
7 | 7 | ||
8 | public class CodeGenerator { |
8 | public class CodeGenerator { |
9 | static void generateDynamicSubstitutionCode(int paramSetVersion) throws IOException { |
9 | static void generateDynamicSubstitutionCode(int paramSetVersion) throws IOException { |
10 | ConfigurationSet cs = ParameterSet.parseXMLConfigSet(paramSetVersion); |
10 | ConfigurationSet cs = ParameterSet.parseXMLParameterSet(paramSetVersion); |
11 | System.out.println(cs.generateDynamicSubstitutionCode()); |
11 | System.out.println(cs.generateDynamicSubstitutionCode()); |
Line 12... | Line 12... | ||
12 | } |
12 | } |
13 | 13 |