com.autonomousapps.visitor.GraphViewVisitor.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dependency-analysis-gradle-plugin Show documentation
Show all versions of dependency-analysis-gradle-plugin Show documentation
Analyzes dependency usage in Android and JVM projects
// Copyright (c) 2024. Tony Robalik.
// SPDX-License-Identifier: Apache-2.0
package com.autonomousapps.visitor
import com.autonomousapps.model.Dependency
import com.autonomousapps.model.DependencyGraphView
import com.autonomousapps.model.ProjectVariant
import com.autonomousapps.model.declaration.Declaration
internal interface GraphViewVisitor {
fun visit(dependency: Dependency, context: Context)
interface Context {
val project: ProjectVariant
val dependencies: Set
val graph: DependencyGraphView
val declarations: Set
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy