Uses of Interface
org.eclipse.aether.graph.DependencyNode
-
Packages that use DependencyNode Package Description org.eclipse.aether.collection The types and extension points for collecting the transitive dependencies of an artifact and building a dependency graph.org.eclipse.aether.graph The representation of a dependency graph by means of connected dependency nodes.org.eclipse.aether.resolution The types supporting the resolution of artifacts and metadata from repositories. -
-
Uses of DependencyNode in org.eclipse.aether.collection
Methods in org.eclipse.aether.collection that return DependencyNode Modifier and Type Method Description DependencyNodeCollectResult. getRoot()Gets the root node of the dependency graph.DependencyNodeDependencyGraphTransformer. transformGraph(DependencyNode node, DependencyGraphTransformationContext context)Transforms the dependency graph denoted by the specified root node.Methods in org.eclipse.aether.collection that return types with arguments of type DependencyNode Modifier and Type Method Description Collection<? extends List<? extends DependencyNode>>UnsolvableVersionConflictException. getPaths()Gets the paths leading to the conflicting dependencies.Methods in org.eclipse.aether.collection with parameters of type DependencyNode Modifier and Type Method Description CollectResultCollectResult. setRoot(DependencyNode root)Sets the root node of the dependency graph.DependencyNodeDependencyGraphTransformer. transformGraph(DependencyNode node, DependencyGraphTransformationContext context)Transforms the dependency graph denoted by the specified root node.Constructor parameters in org.eclipse.aether.collection with type arguments of type DependencyNode Constructor Description UnsolvableVersionConflictException(Collection<? extends List<? extends DependencyNode>> paths)Creates a new exception with the specified paths to conflicting nodes in the dependency graph. -
Uses of DependencyNode in org.eclipse.aether.graph
Classes in org.eclipse.aether.graph that implement DependencyNode Modifier and Type Class Description classDefaultDependencyNodeA node within a dependency graph.Methods in org.eclipse.aether.graph that return types with arguments of type DependencyNode Modifier and Type Method Description List<DependencyNode>DefaultDependencyNode. getChildren()List<DependencyNode>DependencyNode. getChildren()Gets the child nodes of this node.Methods in org.eclipse.aether.graph with parameters of type DependencyNode Modifier and Type Method Description booleanDependencyFilter. accept(DependencyNode node, List<DependencyNode> parents)Indicates whether the specified dependency node shall be included or excluded.booleanDependencyVisitor. visitEnter(DependencyNode node)Notifies the visitor of a node visit before its children have been processed.booleanDependencyVisitor. visitLeave(DependencyNode node)Notifies the visitor of a node visit after its children have been processed.Method parameters in org.eclipse.aether.graph with type arguments of type DependencyNode Modifier and Type Method Description booleanDependencyFilter. accept(DependencyNode node, List<DependencyNode> parents)Indicates whether the specified dependency node shall be included or excluded.voidDefaultDependencyNode. setChildren(List<DependencyNode> children)voidDependencyNode. setChildren(List<DependencyNode> children)Sets the child nodes of this node.Constructors in org.eclipse.aether.graph with parameters of type DependencyNode Constructor Description DefaultDependencyNode(DependencyNode node)Creates a mostly shallow clone of the specified node. -
Uses of DependencyNode in org.eclipse.aether.resolution
Methods in org.eclipse.aether.resolution that return DependencyNode Modifier and Type Method Description DependencyNodeArtifactRequest. getDependencyNode()Gets the dependency node (if any) for which to resolve the artifact.DependencyNodeDependencyRequest. getRoot()Gets the root node of the dependency graph whose artifacts should be resolved.DependencyNodeDependencyResult. getRoot()Gets the root node of the resolved dependency graph.Methods in org.eclipse.aether.resolution with parameters of type DependencyNode Modifier and Type Method Description ArtifactRequestArtifactRequest. setDependencyNode(DependencyNode node)Sets the dependency node to resolve.DependencyRequestDependencyRequest. setRoot(DependencyNode root)Sets the root node of the dependency graph whose artifacts should be resolved.DependencyResultDependencyResult. setRoot(DependencyNode root)Sets the root node of the resolved dependency graph.Constructors in org.eclipse.aether.resolution with parameters of type DependencyNode Constructor Description 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.
-