Class GosuDocOptions
- java.lang.Object
-
- org.gradle.api.tasks.compile.AbstractOptions
-
- org.gosulang.gradle.tasks.gosudoc.GosuDocOptions
-
- All Implemented Interfaces:
java.io.Serializable
public class GosuDocOptions extends org.gradle.api.tasks.compile.AbstractOptions- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GosuDocOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.gradle.api.tasks.compile.BaseForkOptionsgetForkOptions()java.lang.StringgetTitle()Returns the HTML text to appear in the main frame title.booleanisVerbose()voidsetForkOptions(org.gradle.api.tasks.compile.BaseForkOptions forkOptions)voidsetTitle(java.lang.String title)Sets the HTML text to appear in the main frame title.voidsetVerbose(boolean verbose)
-
-
-
Method Detail
-
getTitle
@Input @Optional public java.lang.String getTitle()
Returns the HTML text to appear in the main frame title.- Returns:
- the HTML text to appear in the main frame title.
-
setTitle
public void setTitle(java.lang.String title)
Sets the HTML text to appear in the main frame title.- Parameters:
title- the HTML text to appear in the main frame title.
-
getForkOptions
public org.gradle.api.tasks.compile.BaseForkOptions getForkOptions()
- Returns:
- Options for running the gosudoc generator in a separate process.
-
setForkOptions
public void setForkOptions(org.gradle.api.tasks.compile.BaseForkOptions forkOptions)
- Parameters:
forkOptions- Options for running the gosudoc generator in a separate process.
-
isVerbose
@Console public boolean isVerbose()
-
setVerbose
public void setVerbose(boolean verbose)
-
-