Uses of Interface
org.apache.maven.shared.dependency.graph.traversal.DependencyNodeVisitor
Packages that use DependencyNodeVisitor
Package
Description
-
Uses of DependencyNodeVisitor in org.apache.maven.shared.dependency.graph
Methods in org.apache.maven.shared.dependency.graph with parameters of type DependencyNodeVisitorModifier and TypeMethodDescriptionboolean
DependencyNode.accept
(DependencyNodeVisitor visitor) Applies the specified dependency node visitor to this dependency node and its children. -
Uses of DependencyNodeVisitor in org.apache.maven.shared.dependency.graph.internal
Methods in org.apache.maven.shared.dependency.graph.internal with parameters of type DependencyNodeVisitorModifier and TypeMethodDescriptionboolean
DefaultDependencyNode.accept
(DependencyNodeVisitor visitor) Applies the specified dependency node visitor to this dependency node and its children. -
Uses of DependencyNodeVisitor in org.apache.maven.shared.dependency.graph.traversal
Classes in org.apache.maven.shared.dependency.graph.traversal that implement DependencyNodeVisitorModifier and TypeClassDescriptionclass
A dependency node visitor that clones visited nodes into a new dependency tree.class
A dependency node visitor that collects visited nodes for further processing.class
A dependency node visitor that filters nodes and delegates to another visitor.class
A dependency node visitor that serializes visited nodes to a writer.Methods in org.apache.maven.shared.dependency.graph.traversal that return DependencyNodeVisitorModifier and TypeMethodDescriptionBuildingDependencyNodeVisitor.getDependencyNodeVisitor()
Gets the dependency node visitor that this visitor applies on the resultant dependency tree.FilteringDependencyNodeVisitor.getDependencyNodeVisitor()
Gets the dependency node visitor that this visitor delegates to.Constructors in org.apache.maven.shared.dependency.graph.traversal with parameters of type DependencyNodeVisitorModifierConstructorDescriptionCreates a dependency node visitor that clones visited nodes into a new dependency tree, and then applies the specified dependency node visitor on the resultant dependency tree.FilteringDependencyNodeVisitor
(DependencyNodeVisitor visitor, DependencyNodeFilter filter) Creates a dependency node visitor that delegates nodes that are accepted by the specified filter to the specified visitor.