Package org.gradle.external.javadoc
Interface MinimalJavadocOptions
-
- All Known Implementing Classes:
CoreJavadocOptions
,StandardJavadocDocletOptions
public interface MinimalJavadocOptions
Provides the core Javadoc options.
-
-
Method Summary
-
-
-
Method Detail
-
setOverview
void setOverview(String overview)
-
overview
MinimalJavadocOptions overview(String overview)
-
getMemberLevel
@Input @Optional JavadocMemberLevel getMemberLevel()
-
setMemberLevel
void setMemberLevel(JavadocMemberLevel memberLevel)
-
showFromPublic
MinimalJavadocOptions showFromPublic()
-
showFromProtected
MinimalJavadocOptions showFromProtected()
-
showFromPackage
MinimalJavadocOptions showFromPackage()
-
showFromPrivate
MinimalJavadocOptions showFromPrivate()
-
showAll
MinimalJavadocOptions showAll()
-
setDoclet
void setDoclet(String docletClass)
-
doclet
MinimalJavadocOptions doclet(String docletClass)
-
getDocletpath
@Classpath List<File> getDocletpath()
-
docletpath
MinimalJavadocOptions docletpath(File... docletpath)
-
setSource
void setSource(String source)
-
source
MinimalJavadocOptions source(String source)
-
classpath
MinimalJavadocOptions classpath(List<File> classpath)
-
classpath
MinimalJavadocOptions classpath(File... classpath)
-
getBootClasspath
@Classpath List<File> getBootClasspath()
-
bootClasspath
MinimalJavadocOptions bootClasspath(File... bootClasspath)
-
getExtDirs
@Optional @PathSensitive(RELATIVE) @InputFiles List<File> getExtDirs()
-
extDirs
MinimalJavadocOptions extDirs(File... extDirs)
-
getOutputLevel
@Console JavadocOutputLevel getOutputLevel()
-
setOutputLevel
void setOutputLevel(JavadocOutputLevel outputLevel)
-
verbose
MinimalJavadocOptions verbose()
-
isVerbose
@Internal boolean isVerbose()
-
quiet
MinimalJavadocOptions quiet()
-
isBreakIterator
@Input boolean isBreakIterator()
-
setBreakIterator
void setBreakIterator(boolean breakIterator)
-
breakIterator
MinimalJavadocOptions breakIterator(boolean breakIterator)
-
breakIterator
MinimalJavadocOptions breakIterator()
-
setLocale
void setLocale(String locale)
-
locale
MinimalJavadocOptions locale(String locale)
-
setEncoding
void setEncoding(String encoding)
-
encoding
MinimalJavadocOptions encoding(String encoding)
-
jFlags
MinimalJavadocOptions jFlags(String... jFlags)
-
getOptionFiles
@Optional @PathSensitive(NONE) @InputFiles List<File> getOptionFiles()
-
optionFiles
MinimalJavadocOptions optionFiles(File... argumentFiles)
-
setDestinationDirectory
void setDestinationDirectory(File directory)
-
destinationDirectory
MinimalJavadocOptions destinationDirectory(File directory)
-
setWindowTitle
void setWindowTitle(String windowTitle)
-
windowTitle
StandardJavadocDocletOptions windowTitle(String windowTitle)
-
setHeader
void setHeader(String header)
-
header
StandardJavadocDocletOptions header(String header)
-
write
void write(File outputFile) throws IOException
- Throws:
IOException
-
sourceNames
MinimalJavadocOptions sourceNames(String... sourceNames)
-
contributeCommandLineOptions
void contributeCommandLineOptions(ExecSpec execHandleBuilder)
-
-