org.gradle.tooling.provider.model.ParameterizedToolingModelBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.tooling.provider.model;
import org.gradle.api.Project;
/**
* A {@link ToolingModelBuilder} which can be parameterized by the client.
*
* The parameter type {@code T} does not need to implement the interface defined in the client side, but it does need to have the same structure.
* The Tooling API will create a view from the client side parameter type to the one defined in this model builder, and deal automatically with
* missing methods in order to allow evolution of the models.
*
*
* All classes implementing this interface should also implement methods from {@link ToolingModelBuilder}, which will be used to determine if
* a model can be built by the current builder and to generate the model in case no parameter is passed from the client.
* The parameter type should be bound to the model type.
*
*
* @param The type of parameter used by this model builder.
* @since 4.4
* @see ToolingModelBuilder
*/
public interface ParameterizedToolingModelBuilder extends ToolingModelBuilder {
/**
* Returns the expected type of the parameter.
* It should be an interface with only getters and setters.
*
* @return The type of the parameter.
*/
Class getParameterType();
/**
* Creates the model of the given type for the given project using the given parameter.
*
* @param modelName The model name, usually the same as the name of the Java interface used by the client.
* @param parameter The parameter received from the client.
* @param project The project to create the model for.
* @return The model.
*/
Object buildAll(String modelName, T parameter, Project project);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy