Package com.dtrules.compiler.excel.util

Examples of com.dtrules.compiler.excel.util.Excel2XML


     * @throws Exception
     */
    public static void main(String args[]) throws Exception {
        try {
          String maps[] = {"main"};
            Excel2XML e2x = new Excel2XML(path, "DTRules.xml","SyntaxExamples");
        e2x.compileRuleSet(path,"DTRules.xml","SyntaxExamples","repository",maps,80);
                      
        } catch ( Exception ex ) {
            System.out.println("Failed to convert the Excel files");
            ex.printStackTrace();
            throw ex;
View Full Code Here


    public static void main(String args[]) throws Exception {
       
      try {
         
        String [] maps = { "main" };
            Excel2XML e2x = new Excel2XML(path, "DTRules.xml","CHIP");
        e2x.compileRuleSet(path,"DTRules.xml","CHIP","repository",maps,5);
            StripXML.strip(e2x.getRuleSet().getRulesDirectory(),null,null);
                      
        } catch ( Exception ex ) {
            System.out.println("Failed to convert the Excel files");
            ex.printStackTrace();
            throw ex;
View Full Code Here

TOP

Related Classes of com.dtrules.compiler.excel.util.Excel2XML

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.