Package eu.scape_project.planning.efficiency

Examples of eu.scape_project.planning.efficiency.PlanStatisticsGenerator


        // the length of the resulting XML file is unknown due to
        // formatting: response.setContentLength(xml.length());
        try {
            Writer writer = new OutputStreamWriter(response.getOutputStream());
           
            PlanStatisticsGenerator statstics = new PlanStatisticsGenerator(writer, em);
           
            statstics.writeCompleteStatistics();

        } catch (IOException e) {
            facesMessages.addError("An error occured while generating statistics.");
            log.error("An error occured while generating statistics.", e);
        }
View Full Code Here

TOP

Related Classes of eu.scape_project.planning.efficiency.PlanStatisticsGenerator

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.