Uses of Interface
org.eclipse.aether.graph.DependencyVisitor
Packages that use DependencyVisitor
Package
Description
The representation of a dependency graph by means of connected dependency nodes.
Various dependency visitors for inspecting a dependency graph.
-
Uses of DependencyVisitor in org.eclipse.aether.graph
Methods in org.eclipse.aether.graph with parameters of type DependencyVisitorModifier and TypeMethodDescriptionboolean
DefaultDependencyNode.accept
(DependencyVisitor visitor) boolean
DependencyNode.accept
(DependencyVisitor visitor) Traverses this node and potentially its children using the specified visitor. -
Uses of DependencyVisitor in org.eclipse.aether.util.graph.visitor
Classes in org.eclipse.aether.util.graph.visitor that implement DependencyVisitorModifier and TypeClassDescriptionclass
A dependency visitor that constructs a clone of the visited dependency graph.class
final class
A dependency visitor that delegates to another visitor if nodes match a filter.final class
A dependency visitor that records all paths leading to nodes matching a certain filter criteria.final class
Generates a sequence of dependency nodes from a dependeny graph by traversing the graph in postorder.final class
Generates a sequence of dependency nodes from a dependency graph by traversing the graph in preorder.final class
A dependency visitor that delegates to another visitor if a node hasn't been visited before.Methods in org.eclipse.aether.util.graph.visitor that return DependencyVisitorModifier and TypeMethodDescriptionFilteringDependencyVisitor.getVisitor()
Gets the visitor to which this visitor delegates to.Constructors in org.eclipse.aether.util.graph.visitor with parameters of type DependencyVisitorModifierConstructorDescriptionFilteringDependencyVisitor
(DependencyVisitor visitor, DependencyFilter filter) Creates a new visitor that delegates traversal of nodes matching the given filter to the specified visitor.TreeDependencyVisitor
(DependencyVisitor visitor) Creates a new visitor that delegates to the specified visitor.