Interface IdeaContentRoot
public interface IdeaContentRoot
Contains content root information.
- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptionThe set of excluded directories.DomainObjectSet<? extends IdeaSourceDirectory> The set of resource directories.The content root directory.DomainObjectSet<? extends IdeaSourceDirectory> The set of source directories.DomainObjectSet<? extends IdeaSourceDirectory> The set of test source directories.DomainObjectSet<? extends IdeaSourceDirectory> The set of test resource directories.
-
Method Details
-
getRootDirectory
-
getSourceDirectories
DomainObjectSet<? extends IdeaSourceDirectory> getSourceDirectories()The set of source directories.- Since:
- 1.0
-
getTestDirectories
DomainObjectSet<? extends IdeaSourceDirectory> getTestDirectories()The set of test source directories.- Since:
- 1.0
-
getResourceDirectories
DomainObjectSet<? extends IdeaSourceDirectory> getResourceDirectories() throws UnsupportedMethodExceptionThe set of resource directories. NOTE: The resources directory is only available for Java projects, otherwise it is empty set.- Throws:
UnsupportedMethodException- For Gradle versions older than 4.7 where this method is not supported.- Since:
- 4.7
-
getTestResourceDirectories
DomainObjectSet<? extends IdeaSourceDirectory> getTestResourceDirectories() throws UnsupportedMethodExceptionThe set of test resource directories. NOTE: The test resources directory is only available for Java projects, otherwise it is empty set.- Throws:
UnsupportedMethodException- For Gradle versions older than 4.7 where this method is not supported.- Since:
- 4.7
-
getExcludeDirectories
-