Package org.codehaus.groovy.tools.groovydoc

Examples of org.codehaus.groovy.tools.groovydoc.ClasspathResourceManager


            sourceDirs.addExisting(sourcePath);
        }
        parsePackages(packagesToDoc, sourceDirs);

        GroovyDocTool htmlTool = new GroovyDocTool(
                new ClasspathResourceManager(), // we're gonna get the default templates out of the dist jar file
                sourcePath.list(),
                getDocTemplates(),
                getPackageTemplates(),
                getClassTemplates(),
                links,
View Full Code Here


            sourceDirs.addExisting(sourcePath);
        }
        parsePackages(packagesToDoc, sourceDirs);     
       
      GroovyDocTool htmlTool = new GroovyDocTool(
        new ClasspathResourceManager(), // we're gonna get the default templates out of the dist jar file
        sourcePath.toString(), // sourcepath                     - TODO multiple paths need to be handled here
        new String[] { // top level templates
            "org/codehaus/groovy/tools/groovydoc/gstring-templates/top-level/index.html",
            "org/codehaus/groovy/tools/groovydoc/gstring-templates/top-level/overview-frame.html", // needs all package names
            "org/codehaus/groovy/tools/groovydoc/gstring-templates/top-level/allclasses-frame.html", // needs all packages / class names
View Full Code Here

            sourceDirs.addExisting(sourcePath);
        }
        parsePackages(packagesToDoc, sourceDirs);

        GroovyDocTool htmlTool = new GroovyDocTool(
                new ClasspathResourceManager(), // we're gonna get the default templates out of the dist jar file
                sourcePath.list(),
                getDocTemplates(),
                getPackageTemplates(),
                getClassTemplates(),
                links,
View Full Code Here

TOP

Related Classes of org.codehaus.groovy.tools.groovydoc.ClasspathResourceManager

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.