Package org.gradle.api.tasks.compile
Class DebugOptions
java.lang.Object
org.gradle.api.tasks.compile.DebugOptions
- All Implemented Interfaces:
Serializable
Debug options for Java compilation.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionA comma-separated list of debug information to be generated during compilation.
-
Constructor Details
-
DebugOptions
public DebugOptions()
-
-
Method Details
-
getDebugLevel
A comma-separated list of debug information to be generated during compilation. The list may contain any of the following keywords (without spaces in between):source- Source file debugging information
lines- Line number debugging information
vars- Local variable debugging information
Alternatively, a value of
nonemeans debug information will not be generated.When the value is null, only source and line debugging information will be generated.
-