| Package | Description |
|---|---|
| org.gradle.tooling |
The main interfaces and classes of the Gradle tooling API.
|
| org.gradle.tooling.internal.consumer |
| Modifier and Type | Method and Description |
|---|---|
ModelBuilder<T> |
ModelBuilder.addProgressListener(ProgressListener listener)
Adds a progress listener which will receive progress events as the operation runs.
|
<T extends Model> |
ProjectConnection.model(Class<T> modelType)
Creates a builder which can be used to build the model of the given type.
|
ModelBuilder<T> |
ModelBuilder.setJavaHome(File javaHome)
If the target gradle version supports it you can use this setting
to specify the java home directory to use for the long running operation.
|
ModelBuilder<T> |
ModelBuilder.setJvmArguments(String... jvmArguments)
If the target gradle version supports it you can use this setting
to specify the java vm arguments to use for the long running operation.
|
ModelBuilder<T> |
ModelBuilder.setStandardError(OutputStream outputStream)
Sets the
OutputStream which should receive standard error logging generated while running the operation. |
ModelBuilder<T> |
ModelBuilder.setStandardInput(InputStream inputStream)
If the target gradle version supports it you can use this setting
to set the standard
InputStream that will be used by builds. |
ModelBuilder<T> |
ModelBuilder.setStandardOutput(OutputStream outputStream)
Sets the
OutputStream which should receive standard output logging generated while running the operation. |
ModelBuilder<T> |
ModelBuilder.withArguments(String... arguments)
Specify the command line build arguments.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultModelBuilder<T extends Model,P> |
Copyright © 2013. All rights reserved