Package com.iggroup.oss.restdoclet.plugin.io

Examples of com.iggroup.oss.restdoclet.plugin.io.ControllerJavadocFilenameFilter


    * @param start the directory to start looking for documentation.
    * @param javadocs the collection to which documentation files are added.
    */
   private static void collectControllerJavadocs(final File start,
                                                 final Collection<File> javadocs) {
      final ControllerJavadocFilenameFilter jfilter =
         new ControllerJavadocFilenameFilter();
      for (File javadoc : start.listFiles(jfilter)) {
         javadocs.add(javadoc);
         LOG.info(javadoc.getAbsolutePath());
      }
      final MavenDirectoryFilter dfilter =
View Full Code Here

TOP

Related Classes of com.iggroup.oss.restdoclet.plugin.io.ControllerJavadocFilenameFilter

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.