public class BuildFolderPaths
extends java.lang.Object
| Constructor and Description |
|---|
BuildFolderPaths() |
| Modifier and Type | Method and Description |
|---|---|
void |
addBuildFolderMapping(java.lang.String moduleGradlePath,
java.io.File buildFolder)
Stores the "build" folder path for the given module.
|
java.io.File |
findBuildFolderPath(java.lang.String moduleGradlePath)
Finds the path of the "build" folder for the given module path.
|
public void addBuildFolderMapping(@NonNull
java.lang.String moduleGradlePath,
@NonNull
java.io.File buildFolder)
moduleGradlePath - module's gradle path.buildFolder - path to the module's build directory.@Nullable
public java.io.File findBuildFolderPath(@NonNull
java.lang.String moduleGradlePath)
moduleGradlePath - the given module path.null if the path
is not found or haven't been registered yet.