Package org.jvnet.sorcerer

Examples of org.jvnet.sorcerer.FrameSetGenerator.generateAll()


            addDependencies(pss.getDependencies());

            FrameSetGenerator fsg = new FrameSetGenerator(pss);
            if(windowTitle!=null)
                fsg.setTitle(windowTitle);
            fsg.generateAll(destDir);
        } catch (IOException e) {
            throw new BuildException(e);
        }
    }
View Full Code Here


                addDependencies(pss.getDependencies());

                // TODO: support i18n and use locale for HTML generation
                FrameSetGenerator fsg = new FrameSetGenerator(pss);
                fsg.setTitle(windowTitle);
                fsg.generateAll(new File(getDestinationDirectory()));
            } catch (IOException e) {
                throw new MavenReportException("Error while generating the HTML source code of the projet.", e);
            } catch (DependencyResolutionRequiredException e) {
                throw new MavenReportException("Failed to resolve dependencies",e);
            }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.