Package org.gradle.tooling.model.idea
Interface IdeaCompilerOutput
public interface IdeaCompilerOutput
IDEA compiler output settings.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanwhether current module should inherit project's output directory.directory to store module's production classes and resources.directory to store module's test classes and resources.
- 
Method Details- 
getInheritOutputDirsboolean getInheritOutputDirs()whether current module should inherit project's output directory.- Returns:
- inherit output dirs flag
- See Also:
 
- 
getOutputDirdirectory to store module's production classes and resources.- Returns:
- directory to store production output. non-nullifgetInheritOutputDirs()returns'false'
 
- 
getTestOutputDirdirectory to store module's test classes and resources.- Returns:
- directory to store test output. non-nullifgetInheritOutputDirs()returns'false'
 
 
-