Uses of Interface
org.apache.maven.shared.dependency.graph.DependencyNode

Packages that use DependencyNode
org.apache.maven.shared.dependency.graph   
org.apache.maven.shared.dependency.graph.filter   
org.apache.maven.shared.dependency.graph.internal   
org.apache.maven.shared.dependency.graph.traversal   
 

Uses of DependencyNode in org.apache.maven.shared.dependency.graph
 

Methods in org.apache.maven.shared.dependency.graph that return DependencyNode
 DependencyNode DependencyGraphBuilder.buildDependencyGraph(MavenProject project, ArtifactFilter filter)
          Build the dependency graph.
 DependencyNode DependencyNode.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
 List<DependencyNode> DependencyNode.getChildren()
           
 

Uses of DependencyNode in org.apache.maven.shared.dependency.graph.filter
 

Methods in org.apache.maven.shared.dependency.graph.filter with parameters of type DependencyNode
 boolean DependencyNodeFilter.accept(DependencyNode node)
          Gets whether this filter accepts the specified dependency node.
 boolean AndDependencyNodeFilter.accept(DependencyNode node)
          Gets whether this filter accepts the specified dependency node.
 boolean AncestorOrSelfDependencyNodeFilter.accept(DependencyNode node)
          Gets whether this filter accepts the specified dependency node.
 boolean ArtifactDependencyNodeFilter.accept(DependencyNode node)
          Gets whether this filter accepts the specified dependency node.
 

Constructors in org.apache.maven.shared.dependency.graph.filter with parameters of type DependencyNode
AncestorOrSelfDependencyNodeFilter(DependencyNode descendantNode)
           
 

Constructor parameters in org.apache.maven.shared.dependency.graph.filter with type arguments of type DependencyNode
AncestorOrSelfDependencyNodeFilter(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
 class DefaultDependencyNode
           
 

Methods in org.apache.maven.shared.dependency.graph.internal that return DependencyNode
 DependencyNode Maven31DependencyGraphBuilder.buildDependencyGraph(MavenProject project, ArtifactFilter filter)
           
 DependencyNode DefaultDependencyGraphBuilder.buildDependencyGraph(MavenProject project, ArtifactFilter filter)
           
 DependencyNode Maven2DependencyGraphBuilder.buildDependencyGraph(MavenProject project, ArtifactFilter filter)
           
 DependencyNode Maven3DependencyGraphBuilder.buildDependencyGraph(MavenProject project, ArtifactFilter filter)
           
 DependencyNode DefaultDependencyNode.getParent()
           
 

Methods in org.apache.maven.shared.dependency.graph.internal that return types with arguments of type DependencyNode
 List<DependencyNode> DefaultDependencyNode.getChildren()
           
 

Method parameters in org.apache.maven.shared.dependency.graph.internal with type arguments of type DependencyNode
 void DefaultDependencyNode.setChildren(List<DependencyNode> children)
           
 

Constructors in org.apache.maven.shared.dependency.graph.internal with parameters of type DependencyNode
DefaultDependencyNode(DependencyNode parent, Artifact artifact, String premanagedVersion, String premanagedScope, String versionConstraint)
           
 

Uses of DependencyNode in org.apache.maven.shared.dependency.graph.traversal
 

Methods in org.apache.maven.shared.dependency.graph.traversal that return DependencyNode
 DependencyNode BuildingDependencyNodeVisitor.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
 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
 boolean DependencyNodeVisitor.endVisit(DependencyNode node)
          Ends the visit to to the specified dependency node.
 boolean CollectingDependencyNodeVisitor.endVisit(DependencyNode node)
          Ends the visit to to the specified dependency node.
 boolean SerializingDependencyNodeVisitor.endVisit(DependencyNode node)
          Ends the visit to to the specified dependency node.
 boolean FilteringDependencyNodeVisitor.endVisit(DependencyNode node)
          Ends the visit to to the specified dependency node.
 boolean BuildingDependencyNodeVisitor.endVisit(DependencyNode node)
          Ends the visit to to the specified dependency node.
 boolean DependencyNodeVisitor.visit(DependencyNode node)
          Starts the visit to the specified dependency node.
 boolean CollectingDependencyNodeVisitor.visit(DependencyNode node)
          Starts the visit to the specified dependency node.
 boolean SerializingDependencyNodeVisitor.visit(DependencyNode node)
          Starts the visit to the specified dependency node.
 boolean FilteringDependencyNodeVisitor.visit(DependencyNode node)
          Starts the visit to the specified dependency node.
 boolean BuildingDependencyNodeVisitor.visit(DependencyNode node)
          Starts the visit to the specified dependency node.
 



Copyright © 2002-2013 The Apache Software Foundation. All Rights Reserved.