/* * Copyright 2012 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.api.artifacts.result; import groovy.lang.Closure; import org.gradle.api.Action; import org.gradle.api.Incubating; import java.util.Set; /** * Contains the information about the result of dependency resolution. You can use this type to determine all the component instances that are included * in the resolved dependency graph, and the dependencies between them. */ @Incubating public interface ResolutionResult { /** * Gives access to the root of resolved dependency graph. * You can walk the graph recursively from the root to obtain information about resolved dependencies. * For example, Gradle's built-in 'dependencies' task uses this to render the dependency tree. * * @return the root node of the resolved dependency graph */ ResolvedComponentResult getRoot(); /** * Retrieves all dependencies, including unresolved dependencies. * Resolved dependencies are represented by instances of {@link ResolvedDependencyResult}, * unresolved dependencies by {@link UnresolvedDependencyResult}. * * In dependency graph terminology, this method returns the edges of the graph. * * @return all dependencies, including unresolved dependencies. */ Set<? extends DependencyResult> getAllDependencies(); /** * Applies given action for each dependency. * An instance of {@link DependencyResult} is passed as parameter to the action. * * @param action - action that is applied for each dependency */ void allDependencies(Action<? super DependencyResult> action); /** * Applies given closure for each dependency. * An instance of {@link DependencyResult} is passed as parameter to the closure. * * @param closure - closure that is applied for each dependency */ void allDependencies(Closure closure); /** * Retrieves all instances of {@link ResolvedComponentResult} from the graph, * e.g. all nodes of the dependency graph. * * @return all nodes of the dependency graph. */ Set<ResolvedComponentResult> getAllComponents(); /** * Applies given action for each component. * An instance of {@link ResolvedComponentResult} is passed as parameter to the action. * * @param action - action that is applied for each component */ void allComponents(Action<? super ResolvedComponentResult> action); /** * Applies given closure for each component. * An instance of {@link ResolvedComponentResult} is passed as parameter to the closure. * * @param closure - closure that is applied for each component */ void allComponents(Closure closure); }