Uses of Interface
org.sonatype.aether.graph.DependencyNode

Packages that use DependencyNode
org.sonatype.aether   
org.sonatype.aether.collection   
org.sonatype.aether.graph   
org.sonatype.aether.impl.internal   
org.sonatype.aether.resolution   
org.sonatype.aether.test.util   
org.sonatype.aether.test.util.impl   
org.sonatype.aether.util.filter   
org.sonatype.aether.util.graph   
org.sonatype.aether.util.graph.transformer   
 

Uses of DependencyNode in org.sonatype.aether
 

Methods in org.sonatype.aether with parameters of type DependencyNode
 List<ArtifactResult> RepositorySystem.resolveDependencies(RepositorySystemSession session, DependencyNode node, DependencyFilter filter)
          Deprecated. Use RepositorySystem.resolveDependencies(RepositorySystemSession, DependencyRequest) instead.
 

Uses of DependencyNode in org.sonatype.aether.collection
 

Methods in org.sonatype.aether.collection that return DependencyNode
 DependencyNode CollectResult.getRoot()
          Gets the root node of the dependency graph.
 DependencyNode DependencyGraphTransformer.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
          Transforms the dependency graph denoted by the specified root node.
 

Methods in org.sonatype.aether.collection with parameters of type DependencyNode
 CollectResult CollectResult.setRoot(DependencyNode root)
          Sets the root node of the dependency graph.
 DependencyNode DependencyGraphTransformer.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
          Transforms the dependency graph denoted by the specified root node.
 

Uses of DependencyNode in org.sonatype.aether.graph
 

Methods in org.sonatype.aether.graph that return types with arguments of type DependencyNode
 List<DependencyNode> DependencyNode.getChildren()
          Gets the child nodes of this node.
 

Methods in org.sonatype.aether.graph with parameters of type DependencyNode
 boolean DependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
          Indicates whether the specified dependency node shall be included or excluded.
 boolean DependencyVisitor.visitEnter(DependencyNode node)
          Notifies the visitor of a node visit before its children have been processed.
 boolean DependencyVisitor.visitLeave(DependencyNode node)
          Notifies the visitor of a node visit after its children have been processed.
 

Method parameters in org.sonatype.aether.graph with type arguments of type DependencyNode
 boolean DependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
          Indicates whether the specified dependency node shall be included or excluded.
 

Uses of DependencyNode in org.sonatype.aether.impl.internal
 

Methods in org.sonatype.aether.impl.internal with parameters of type DependencyNode
 List<ArtifactResult> DefaultRepositorySystem.resolveDependencies(RepositorySystemSession session, DependencyNode node, DependencyFilter filter)
           
 

Uses of DependencyNode in org.sonatype.aether.resolution
 

Methods in org.sonatype.aether.resolution that return DependencyNode
 DependencyNode ArtifactRequest.getDependencyNode()
          Gets the dependency node (if any) for which to resolve the artifact.
 DependencyNode DependencyRequest.getRoot()
          Gets the root node of the dependency graph whose artifacts should be resolved.
 DependencyNode DependencyResult.getRoot()
          Gets the root node of the resolved dependency graph.
 

Methods in org.sonatype.aether.resolution with parameters of type DependencyNode
 ArtifactRequest ArtifactRequest.setDependencyNode(DependencyNode node)
          Sets the dependency node to resolve.
 DependencyRequest DependencyRequest.setRoot(DependencyNode root)
          Sets the root node of the dependency graph whose artifacts should be resolved.
 DependencyResult DependencyResult.setRoot(DependencyNode root)
          Sets the root node of the resolved dependency graph.
 

Constructors in org.sonatype.aether.resolution with parameters of type DependencyNode
ArtifactRequest(DependencyNode node)
          Creates a request from the specified dependency node.
DependencyRequest(DependencyNode node, DependencyFilter filter)
          Creates a request for the specified dependency graph and with the given resolution filter.
 

Uses of DependencyNode in org.sonatype.aether.test.util
 

Methods in org.sonatype.aether.test.util that return DependencyNode
 DependencyNode NodeBuilder.build()
           
 DependencyNode DependencyGraphParser.parse(String resource)
          Parse the graph definition read from the given resource.
 DependencyNode DependencyGraphParser.parse(URL resource)
          Parse the graph definition read from the given URL.
 DependencyNode DependencyGraphParser.parseLiteral(String dependencyGraph)
          Parse the given graph definition.
 

Methods in org.sonatype.aether.test.util that return types with arguments of type DependencyNode
 List<DependencyNode> DependencyGraphParser.parseMultiple(String resource)
          Parse multiple graphs in one resource, divided by "---".
 

Methods in org.sonatype.aether.test.util with parameters of type DependencyNode
 String DependencyGraphParser.dump(DependencyNode root)
           
 

Uses of DependencyNode in org.sonatype.aether.test.util.impl
 

Classes in org.sonatype.aether.test.util.impl that implement DependencyNode
 class TestDependencyNode
          A node within a dependency graph.
 

Methods in org.sonatype.aether.test.util.impl that return types with arguments of type DependencyNode
 List<DependencyNode> TestDependencyNode.getChildren()
           
 

Constructors in org.sonatype.aether.test.util.impl with parameters of type DependencyNode
TestDependencyNode(DependencyNode node)
          Creates a shallow clone of the specified node.
 

Uses of DependencyNode in org.sonatype.aether.util.filter
 

Methods in org.sonatype.aether.util.filter with parameters of type DependencyNode
 boolean AndDependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
           
 boolean ExclusionsDependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
           
 boolean ScopeDependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
           
 boolean NotDependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
           
 boolean OrDependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
           
 boolean PatternInclusionsDependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
           
 boolean PatternExclusionsDependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
           
 

Method parameters in org.sonatype.aether.util.filter with type arguments of type DependencyNode
 boolean AndDependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
           
 boolean ExclusionsDependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
           
 boolean ScopeDependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
           
 boolean NotDependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
           
 boolean OrDependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
           
 boolean PatternInclusionsDependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
           
 boolean PatternExclusionsDependencyFilter.accept(DependencyNode node, List<DependencyNode> parents)
           
 

Uses of DependencyNode in org.sonatype.aether.util.graph
 

Classes in org.sonatype.aether.util.graph that implement DependencyNode
 class DefaultDependencyNode
          A node within a dependency graph.
 

Methods in org.sonatype.aether.util.graph that return DependencyNode
protected  DependencyNode CloningDependencyVisitor.clone(DependencyNode node)
          Creates a clone of the specified node for usage as a child of the given parent node.
 DependencyNode CloningDependencyVisitor.getRootNode()
          Gets the root node of the cloned dependency graph.
 

Methods in org.sonatype.aether.util.graph that return types with arguments of type DependencyNode
 List<DependencyNode> DefaultDependencyNode.getChildren()
           
 List<DependencyNode> PreorderNodeListGenerator.getNodes()
          Gets the list of dependency nodes that was generated during the graph traversal.
 

Methods in org.sonatype.aether.util.graph with parameters of type DependencyNode
protected  DependencyNode CloningDependencyVisitor.clone(DependencyNode node)
          Creates a clone of the specified node for usage as a child of the given parent node.
 boolean PreorderNodeListGenerator.visitEnter(DependencyNode node)
           
 boolean TreeDependencyVisitor.visitEnter(DependencyNode node)
           
 boolean CloningDependencyVisitor.visitEnter(DependencyNode node)
           
 boolean FilteringDependencyVisitor.visitEnter(DependencyNode node)
           
 boolean PreorderNodeListGenerator.visitLeave(DependencyNode node)
           
 boolean TreeDependencyVisitor.visitLeave(DependencyNode node)
           
 boolean CloningDependencyVisitor.visitLeave(DependencyNode node)
           
 boolean FilteringDependencyVisitor.visitLeave(DependencyNode node)
           
 

Constructors in org.sonatype.aether.util.graph with parameters of type DependencyNode
DefaultDependencyNode(DependencyNode node)
          Creates a shallow clone of the specified node.
 

Uses of DependencyNode in org.sonatype.aether.util.graph.transformer
 

Methods in org.sonatype.aether.util.graph.transformer that return DependencyNode
 DependencyNode JavaEffectiveScopeCalculator.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
           
 DependencyNode NoopDependencyGraphTransformer.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
           
 DependencyNode JavaDependencyContextRefiner.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
           
 DependencyNode ChainedDependencyGraphTransformer.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
           
 DependencyNode ConflictMarker.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
          After the execution of this method, every DependencyNode with an attached dependency is member of one conflict group.
 DependencyNode NearestVersionConflictResolver.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
           
 DependencyNode ConflictIdSorter.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
           
 

Methods in org.sonatype.aether.util.graph.transformer with parameters of type DependencyNode
 DependencyNode JavaEffectiveScopeCalculator.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
           
 DependencyNode NoopDependencyGraphTransformer.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
           
 DependencyNode JavaDependencyContextRefiner.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
           
 DependencyNode ChainedDependencyGraphTransformer.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
           
 DependencyNode ConflictMarker.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
          After the execution of this method, every DependencyNode with an attached dependency is member of one conflict group.
 DependencyNode NearestVersionConflictResolver.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
           
 DependencyNode ConflictIdSorter.transformGraph(DependencyNode node, DependencyGraphTransformationContext context)
           
 



Copyright © 2010-2011 Sonatype, Inc.. All Rights Reserved.