Examples of VdldocGenerator


Examples of org.omnifaces.vdldoc.VdldocGenerator

  private String[] taglibs;

  @Override
  public void execute() throws MojoExecutionException, MojoFailureException {

    VdldocGenerator generator = new VdldocGenerator();
    generator.setWindowTitle(windowTitle);
    generator.setDocTitle(docTitle);
    generator.setOutputDirectory(new File("target/vdldoc"));
    generator.setQuiet(quiet);

    if (taglibs != null) {

      for (String taglib : taglibs) {
        generator.addTaglib(new File(taglib));
      }
    }

    generator.generate();
  }
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.