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 TypeMethodDescriptionbooleanDependencyNode.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 TypeMethodDescriptionbooleanDefaultDependencyNode.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 TypeClassDescriptionclassA dependency node visitor that clones visited nodes into a new dependency tree.classA dependency node visitor that collects visited nodes for further processing.classA dependency node visitor that filters nodes and delegates to another visitor.classA 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.