Package ch.pollet.jzic.writer

Examples of ch.pollet.jzic.writer.Writer


        }

        Database database = new Database();
        Parser parser     = new Parser(database);
        Compiler compiler = new Compiler(database);
        Writer writer = new Writer(database);

        parser.parse(config.getStringArray("inputFiles"));

        //todo: implement
//        compiler.setMinYear(config.getInt("minYear"));
//        compiler.setMaxYear(config.getInt("maxYear"));
        compiler.compile();

//        database.dump();

        writer.write(config.getString("outputPath"),
                     config.getStringArray("outputFormats"),
                     config.getBoolean("singleFile"));
    }
View Full Code Here

TOP

Related Classes of ch.pollet.jzic.writer.Writer

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.