Package net.sourceforge.yagsbook.encyclopedia

Examples of net.sourceforge.yagsbook.encyclopedia.Encyclopedia


    public void
    execute() throws BuildException {
        Iterator        iter = sources.iterator();

        try {
            Encyclopedia    e = new Encyclopedia(new File(destination));
            while (iter.hasNext()) {
                String      src = (String)iter.next();
                e.add(new FileSystemSource(new File(src)));
            }

            e.setProperties(properties);
            e.setConfiguration(new File(configPath));
            e.build();
        } catch (Exception ex) {
            ex.printStackTrace();
            throw new BuildException("Failed to build encyclopedia");
        }
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.yagsbook.encyclopedia.Encyclopedia

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.