|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.gradle.api.internal.ConventionTask org.gradle.api.tasks.SourceTask org.gradle.api.tasks.javadoc.Groovydoc
public class Groovydoc extends SourceTask
Generates HTML API documentation for Groovy source, and optionally, Java source.
This task uses Groovy's Groovydoc tool to generate the API documentation. Please note that the Groovydoc tool has some severe limitations at the moment (for example no doc for properties comments). The version of the Groovydoc that is used, is the one from the Groovy defined in the build script. Please note also, that the Groovydoc tool prints to System.out for many of its statements and does circumvents our logging currently.
Nested Class Summary | |
---|---|
static class |
Groovydoc.Link
A Link class represent a link between groovydoc/javadoc output and url. |
Field Summary |
---|
Fields inherited from class SourceTask | |
---|---|
source |
Constructor Summary | |
Groovydoc()
|
Method Summary | |
---|---|
protected void
|
generate()
|
AntGroovydoc
|
getAntGroovydoc()
|
FileCollection
|
getClasspath()
Returns the classpath used to locate classes referenced by the documented sources. |
File
|
getDestinationDir()
Returns the directory to generate the documentation into. |
String
|
getDocTitle()
Returns the title for the package index(first) page. |
String
|
getFooter()
Returns the HTML footer for each page. |
FileCollection
|
getGroovyClasspath()
Returns the classpath containing the Groovy library to be used. |
String
|
getHeader()
Returns the HTML header for each page. |
Set
|
getLinks()
Returns the links to groovydoc/javadoc output at the given URL. |
String
|
getOverview()
Returns a HTML file to be used for overview documentation. |
String
|
getWindowTitle()
Returns the browser window title for the documentation. |
boolean
|
isIncludePrivate()
Returns whether to include all classes and members (i.e. including private ones). |
boolean
|
isUse()
Returns whether to create class and package usage pages. |
void
|
link(String url, String... packages)
Add links to groovydoc/javadoc output at the given URL. |
void
|
setAntGroovydoc(AntGroovydoc antGroovydoc)
|
void
|
setClasspath(FileCollection classpath)
Sets the classpath used to locate classes referenced by the documented sources. |
void
|
setDestinationDir(File destinationDir)
Sets the directory to generate the documentation into. |
void
|
setDocTitle(String docTitle)
Sets title for the package index(first) page (optional). |
void
|
setFooter(String footer)
Sets footer text for each page (optional). |
void
|
setGroovyClasspath(FileCollection groovyClasspath)
Sets the classpath containing the Groovy library to be used. |
void
|
setHeader(String header)
Sets header text for each page (optional). |
void
|
setIncludePrivate(boolean includePrivate)
Sets whether to include all classes and members (i.e. including private ones) if set to true. |
void
|
setLinks(Set links)
Sets links to groovydoc/javadoc output at the given URL. |
void
|
setOverview(String overview)
Sets a HTML file to be used for overview documentation (optional). |
void
|
setUse(boolean use)
Sets whether to create class and package usage pages. |
void
|
setWindowTitle(String windowTitle)
Sets the browser window title for the documentation. |
Methods inherited from class SourceTask | |
---|---|
exclude, exclude, exclude, exclude, getDefaultSource, getExcludes, getIncludes, getSource, include, include, include, include, setExcludes, setIncludes, setSource, source |
Constructor Detail |
---|
public Groovydoc()
Method Detail |
---|
@TaskAction protected void generate()
public AntGroovydoc getAntGroovydoc()
@InputFiles public FileCollection getClasspath()
@OutputDirectory public File getDestinationDir()
@Input @Optional public String getDocTitle()
@Input @Optional public String getFooter()
@InputFiles public FileCollection getGroovyClasspath()
@Input @Optional public String getHeader()
@Input public Set getLinks()
public String getOverview()
@Input @Optional public String getWindowTitle()
@Input public boolean isIncludePrivate()
@Input public boolean isUse()
public void link(String url, String... packages)
url
- Base URL of external sitepackages
- list of package prefixes
public void setAntGroovydoc(AntGroovydoc antGroovydoc)
public void setClasspath(FileCollection classpath)
public void setDestinationDir(File destinationDir)
public void setDocTitle(String docTitle)
docTitle
- the docTitle as HTML
public void setFooter(String footer)
footer
- the footer as HTML
public void setGroovyClasspath(FileCollection groovyClasspath)
public void setHeader(String header)
header
- the header as HTML
public void setIncludePrivate(boolean includePrivate)
public void setLinks(Set links)
links
- The links to set
public void setOverview(String overview)
public void setUse(boolean use)
public void setWindowTitle(String windowTitle)
windowTitle
- A text for the windows title
Gradle API 1.12