Package org.apache.cocoon.bean.destination

Examples of org.apache.cocoon.bean.destination.FileDestination


        System.out.println(getProlog());
       
        cocoon.initialize();
        cocoon.warmup();
        cocoon.process(targets, new FileDestination(destDir));
        cocoon.dispose();

        long duration = System.currentTimeMillis() - startTimeMillis;
        System.out.println("Total time: " + (duration / 60000) + " minutes " + (duration % 60000)/1000 + " seconds");
        System.exit(0);
View Full Code Here

TOP

Related Classes of org.apache.cocoon.bean.destination.FileDestination

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.