Subversion Repositories Projects

Rev

Rev 1611 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package dongfang.mkt.main;

import java.io.IOException;

import dongfang.mkt.configuration.ConfigSet;

public class CodeGenerator {
        static void generateDynamicSubstitutionCode(int paramSetVersion) throws IOException {
                ConfigSet cs = ConfigSet.parseXMLConfigSet(paramSetVersion);
                System.out.println(cs.generateDynamicSubstitutionCode());
        }
       
        public static void main (String[] args) throws IOException {
                CodeGenerator.generateDynamicSubstitutionCode(3);
        }
}