getModel

abstract fun <T> getModel(modelType: Class<T>): T(source)

Fetches a snapshot of the model of the given type for the default project. The default project is generally the project referenced when a ProjectConnection is created.

Any of following models types may be available, depending on the version of Gradle being used by the target build:

A build may also expose additional custom tooling models. You can use this method to query these models.

Return

The model.

Since

1.8

Parameters

modelType

The model type.

<T>

The model type.

Throws

When the default project does not support the requested model.


abstract fun <T> getModel(target: Model, modelType: Class<T>): T(source)

Fetches a snapshot of the model of the given type for the given element, usually a Gradle project.

The following elements are supported as targets:

See getModel for more details.

Return

The model.

Parameters

target

The target element, usually a project.

modelType

The model type.

<T>

The model type.

Throws

When the target project does not support the requested model.


abstract fun <T, P> getModel(modelType: Class<T>, parameterType: Class<P>, parameterInitializer: Action<in P>): T(source)

Fetches a snapshot of the model of the given type using the given parameter.

See getModel for more details.

Return

The model.

Since

4.4

Parameters

modelType

The model type.

<T>

The model type.

parameterType

The parameter type.

<P>

The parameter type.

parameterInitializer

Action to configure the parameter

Throws

When the target project does not support the requested model.

When the target project does not support the requested model or Gradle version does not support parameterized models.


abstract fun <T, P> getModel(target: Model, modelType: Class<T>, parameterType: Class<P>, parameterInitializer: Action<in P>): T(source)

Fetches a snapshot of the model of the given type for the given element using the given parameter.

The parameter type must be an interface only with getters and setters and no nesting is supported. The Tooling API will create a proxy instance of this interface and use the initializer to run against that instance to configure it and then pass to the model builder.

See getModel for more details.

Return

The model.

Since

4.4

Parameters

target

The target element, usually a project.

modelType

The model type.

<T>

The model type.

parameterType

The parameter type.

<P>

The parameter type.

parameterInitializer

Action to configure the parameter

Throws

When the target project does not support the requested model.

When the target project does not support the requested model or Gradle version does not support parameterized models.