Class ScalaDocOptions
java.lang.Object
org.gradle.api.tasks.scala.ScalaDocOptions
- All Implemented Interfaces:
Serializable
Options for the ScalaDoc tool.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the additional parameters passed to the compiler.@Nullable StringReturns the HTML text to appear in the bottom text for each page.@Nullable StringReturns the HTML text to appear in the main frame title.@Nullable StringReturns the HTML text to appear in the footer for each page.@Nullable StringReturns the HTML text to appear in the header for each page.@Nullable StringgetTop()Returns the HTML text to appear in the top text for each page.@Nullable StringReturns the text to appear in the window title.booleanTells whether to generate deprecation information.booleanTells whether to generate unchecked information.voidsetAdditionalParameters(@Nullable List<String> additionalParameters) Sets the additional parameters passed to the compiler.voidSets the HTML text to appear in the bottom text for each page.voidsetDeprecation(boolean deprecation) Sets whether to generate deprecation information.voidsetDocTitle(@Nullable String docTitle) Sets the HTML text to appear in the main frame title.voidSets the HTML text to appear in the footer for each page.voidSets the HTML text to appear in the header for each page.voidSets the HTML text to appear in the top text for each page.voidsetUnchecked(boolean unchecked) Sets whether to generate unchecked information.voidsetWindowTitle(@Nullable String windowTitle) Sets the text to appear in the window title.
-
Constructor Details
-
ScalaDocOptions
public ScalaDocOptions()
-
-
Method Details
-
isDeprecation
Tells whether to generate deprecation information. -
setDeprecation
public void setDeprecation(boolean deprecation) Sets whether to generate deprecation information. -
isUnchecked
Tells whether to generate unchecked information. -
setUnchecked
public void setUnchecked(boolean unchecked) Sets whether to generate unchecked information. -
getWindowTitle
-
setWindowTitle
Sets the text to appear in the window title. -
getDocTitle
-
setDocTitle
Sets the HTML text to appear in the main frame title. -
getHeader
-
setHeader
Sets the HTML text to appear in the header for each page. -
getTop
-
setTop
Sets the HTML text to appear in the top text for each page. -
getBottom
-
setBottom
Sets the HTML text to appear in the bottom text for each page. -
getAdditionalParameters
-
setAdditionalParameters
-