Uses of Interface
org.apache.maven.shared.dependency.graph.DependencyNode
-
-
Uses of DependencyNode in org.apache.maven.shared.dependency.graph
Methods in org.apache.maven.shared.dependency.graph that return DependencyNode Modifier and Type Method Description DependencyNodeDependencyGraphBuilder. buildDependencyGraph(org.apache.maven.project.ProjectBuildingRequest buildingRequest, org.apache.maven.artifact.resolver.filter.ArtifactFilter filter)Build the dependency graph.DependencyNodeDependencyGraphBuilder. buildDependencyGraph(org.apache.maven.project.ProjectBuildingRequest buildingRequest, org.apache.maven.artifact.resolver.filter.ArtifactFilter filter, java.util.Collection<org.apache.maven.project.MavenProject> reactorProjects)Build the dependency graph, with a hack to include dependencies contained in the reactor projects but that are not yet compiled, which is the minimum prerequisite for Maven core's ReactorReader to find them.DependencyNodeDependencyNode. getParent()Gets the parent dependency node of this dependency node.Methods in org.apache.maven.shared.dependency.graph that return types with arguments of type DependencyNode Modifier and Type Method Description java.util.List<DependencyNode>DependencyNode. getChildren() -
Uses of DependencyNode in org.apache.maven.shared.dependency.graph.filter
Fields in org.apache.maven.shared.dependency.graph.filter with type parameters of type DependencyNode Modifier and Type Field Description private java.util.List<DependencyNode>AncestorOrSelfDependencyNodeFilter. descendantNodesThe list of nodes that this filter accepts ancestors-or-self of.Methods in org.apache.maven.shared.dependency.graph.filter with parameters of type DependencyNode Modifier and Type Method Description booleanAncestorOrSelfDependencyNodeFilter. accept(DependencyNode node)Gets whether this filter accepts the specified dependency node.booleanAndDependencyNodeFilter. accept(DependencyNode node)Gets whether this filter accepts the specified dependency node.booleanArtifactDependencyNodeFilter. accept(DependencyNode node)Gets whether this filter accepts the specified dependency node.booleanDependencyNodeFilter. accept(DependencyNode node)Gets whether this filter accepts the specified dependency node.private booleanAncestorOrSelfDependencyNodeFilter. isAncestorOrSelf(DependencyNode ancestorNode, DependencyNode descendantNode)Gets whether the first dependency node is an ancestor-or-self of the second.Constructors in org.apache.maven.shared.dependency.graph.filter with parameters of type DependencyNode Constructor Description AncestorOrSelfDependencyNodeFilter(DependencyNode descendantNode)Constructor parameters in org.apache.maven.shared.dependency.graph.filter with type arguments of type DependencyNode Constructor Description AncestorOrSelfDependencyNodeFilter(java.util.List<DependencyNode> descendantNodes)Creates a dependency node filter that only accepts nodes that are ancestors of, or equal to, the specified list of nodes. -
Uses of DependencyNode in org.apache.maven.shared.dependency.graph.internal
Classes in org.apache.maven.shared.dependency.graph.internal that implement DependencyNode Modifier and Type Class Description classDefaultDependencyNodeDefault implementation of a DependencyNode.Fields in org.apache.maven.shared.dependency.graph.internal declared as DependencyNode Modifier and Type Field Description private DependencyNodeDefaultDependencyNode. parentFields in org.apache.maven.shared.dependency.graph.internal with type parameters of type DependencyNode Modifier and Type Field Description private java.util.List<DependencyNode>DefaultDependencyNode. childrenMethods in org.apache.maven.shared.dependency.graph.internal that return DependencyNode Modifier and Type Method Description DependencyNodeDefaultDependencyGraphBuilder. buildDependencyGraph(org.apache.maven.project.ProjectBuildingRequest buildingRequest, org.apache.maven.artifact.resolver.filter.ArtifactFilter filter)Builds a dependency graph.DependencyNodeDefaultDependencyGraphBuilder. buildDependencyGraph(org.apache.maven.project.ProjectBuildingRequest buildingRequest, org.apache.maven.artifact.resolver.filter.ArtifactFilter filter, java.util.Collection<org.apache.maven.project.MavenProject> reactorProjects)Builds a dependency graph.DependencyNodeMaven31DependencyGraphBuilder. buildDependencyGraph(org.apache.maven.project.ProjectBuildingRequest buildingRequest, org.apache.maven.artifact.resolver.filter.ArtifactFilter filter)Builds the dependency graph for Maven 3.1+.DependencyNodeMaven31DependencyGraphBuilder. buildDependencyGraph(org.apache.maven.project.ProjectBuildingRequest buildingRequest, org.apache.maven.artifact.resolver.filter.ArtifactFilter filter, java.util.Collection<org.apache.maven.project.MavenProject> reactorProjects)Builds the dependency graph for Maven 3.1+, eventually hacking for collecting projects from reactor not yet built.private DependencyNodeMaven31DependencyGraphBuilder. buildDependencyNode(DependencyNode parent, org.eclipse.aether.graph.DependencyNode node, org.apache.maven.artifact.Artifact artifact, org.apache.maven.artifact.resolver.filter.ArtifactFilter filter)DependencyNodeDefaultDependencyNode. getParent()Methods in org.apache.maven.shared.dependency.graph.internal that return types with arguments of type DependencyNode Modifier and Type Method Description java.util.List<DependencyNode>DefaultDependencyNode. getChildren()Methods in org.apache.maven.shared.dependency.graph.internal with parameters of type DependencyNode Modifier and Type Method Description private DependencyNodeMaven31DependencyGraphBuilder. buildDependencyNode(DependencyNode parent, org.eclipse.aether.graph.DependencyNode node, org.apache.maven.artifact.Artifact artifact, org.apache.maven.artifact.resolver.filter.ArtifactFilter filter)Method parameters in org.apache.maven.shared.dependency.graph.internal with type arguments of type DependencyNode Modifier and Type Method Description voidDefaultDependencyNode. setChildren(java.util.List<DependencyNode> children)Constructors in org.apache.maven.shared.dependency.graph.internal with parameters of type DependencyNode Constructor Description DefaultDependencyNode(DependencyNode parent, org.apache.maven.artifact.Artifact artifact, java.lang.String premanagedVersion, java.lang.String premanagedScope, java.lang.String versionConstraint)Constructs the DefaultDependencyNode.DefaultDependencyNode(DependencyNode parent, org.apache.maven.artifact.Artifact artifact, java.lang.String premanagedVersion, java.lang.String premanagedScope, java.lang.String versionConstraint, java.lang.Boolean optional) -
Uses of DependencyNode in org.apache.maven.shared.dependency.graph.traversal
Fields in org.apache.maven.shared.dependency.graph.traversal declared as DependencyNode Modifier and Type Field Description private DependencyNodeBuildingDependencyNodeVisitor. rootNodeThe root node of the resultant tree.Fields in org.apache.maven.shared.dependency.graph.traversal with type parameters of type DependencyNode Modifier and Type Field Description private java.util.List<DependencyNode>CollectingDependencyNodeVisitor. nodesThe collected list of nodes.private java.util.Stack<DependencyNode>BuildingDependencyNodeVisitor. parentNodesThe resultant tree parent nodes for the currently visited node.Methods in org.apache.maven.shared.dependency.graph.traversal that return DependencyNode Modifier and Type Method Description DependencyNodeBuildingDependencyNodeVisitor. getDependencyTree()Gets the root node of the resultant dependency tree constructed by this visitor.Methods in org.apache.maven.shared.dependency.graph.traversal that return types with arguments of type DependencyNode Modifier and Type Method Description java.util.List<DependencyNode>CollectingDependencyNodeVisitor. getNodes()Gets the list of collected dependency nodes.Methods in org.apache.maven.shared.dependency.graph.traversal with parameters of type DependencyNode Modifier and Type Method Description booleanBuildingDependencyNodeVisitor. endVisit(DependencyNode node)Ends the visit to to the specified dependency node.booleanCollectingDependencyNodeVisitor. endVisit(DependencyNode node)Ends the visit to to the specified dependency node.booleanDependencyNodeVisitor. endVisit(DependencyNode node)Ends the visit to to the specified dependency node.booleanFilteringDependencyNodeVisitor. endVisit(DependencyNode node)Ends the visit to to the specified dependency node.booleanSerializingDependencyNodeVisitor. endVisit(DependencyNode node)Ends the visit to to the specified dependency node.private voidSerializingDependencyNodeVisitor. indent(DependencyNode node)Writes the necessary tokens to indent the specified dependency node to this visitor's writer.private booleanSerializingDependencyNodeVisitor. isLast(DependencyNode node)Gets whether the specified dependency node is the last of its siblings.private booleanSerializingDependencyNodeVisitor. isLast(DependencyNode node, int ancestorDepth)Gets whether the specified dependency node ancestor is the last of its siblings.booleanBuildingDependencyNodeVisitor. visit(DependencyNode node)Starts the visit to the specified dependency node.booleanCollectingDependencyNodeVisitor. visit(DependencyNode node)Starts the visit to the specified dependency node.booleanDependencyNodeVisitor. visit(DependencyNode node)Starts the visit to the specified dependency node.booleanFilteringDependencyNodeVisitor. visit(DependencyNode node)Starts the visit to the specified dependency node.booleanSerializingDependencyNodeVisitor. visit(DependencyNode node)Starts the visit to the specified dependency node.
-