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.internal.impl The various sub components that collectively implement the repository system.org.eclipse.aether.internal.impl.collect Internal helper classes for dependency collector.org.eclipse.aether.internal.test.util Utility classes to ease unit testing.org.eclipse.aether.resolution The types supporting the resolution of artifacts and metadata from repositories.org.eclipse.aether.util.filter Various dependency filters for selecting nodes in a dependency graph.org.eclipse.aether.util.graph.manager Various dependency managers for building a dependency graph.org.eclipse.aether.util.graph.transformer Various dependency graph transformers for post-processing a dependency graph.org.eclipse.aether.util.graph.visitor Various dependency visitors for inspecting a dependency graph. -
-
Uses of DependencyNode in org.eclipse.aether.collection
Fields in org.eclipse.aether.collection declared as DependencyNode Modifier and Type Field Description private DependencyNodeCollectResult. rootFields in org.eclipse.aether.collection with type parameters of type DependencyNode Modifier and Type Field Description private java.util.Collection<? extends java.util.List<? extends DependencyNode>>UnsolvableVersionConflictException. pathsMethods 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 java.util.Collection<? extends java.util.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.Method parameters in org.eclipse.aether.collection with type arguments of type DependencyNode Modifier and Type Method Description private static java.lang.StringUnsolvableVersionConflictException. toPath(java.util.List<? extends DependencyNode> path)private static java.lang.StringUnsolvableVersionConflictException. toPaths(java.util.Collection<? extends java.util.List<? extends DependencyNode>> paths)Constructor parameters in org.eclipse.aether.collection with type arguments of type DependencyNode Constructor Description UnsolvableVersionConflictException(java.util.Collection<? extends java.util.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.Fields in org.eclipse.aether.graph with type parameters of type DependencyNode Modifier and Type Field Description private java.util.List<DependencyNode>DefaultDependencyNode. childrenMethods in org.eclipse.aether.graph that return types with arguments of type DependencyNode Modifier and Type Method Description java.util.List<DependencyNode>DefaultDependencyNode. getChildren()java.util.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, java.util.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, java.util.List<DependencyNode> parents)Indicates whether the specified dependency node shall be included or excluded.voidDefaultDependencyNode. setChildren(java.util.List<DependencyNode> children)voidDependencyNode. setChildren(java.util.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.internal.impl
Methods in org.eclipse.aether.internal.impl with parameters of type DependencyNode Modifier and Type Method Description booleanArtifactRequestBuilder. visitEnter(DependencyNode node)booleanArtifactRequestBuilder. visitLeave(DependencyNode node) -
Uses of DependencyNode in org.eclipse.aether.internal.impl.collect
Fields in org.eclipse.aether.internal.impl.collect declared as DependencyNode Modifier and Type Field Description private DependencyNode[]NodeStack. nodesFields in org.eclipse.aether.internal.impl.collect with type parameters of type DependencyNode Modifier and Type Field Description private java.util.Map<java.lang.Object,java.util.List<DependencyNode>>DataPool. nodesMethods in org.eclipse.aether.internal.impl.collect that return DependencyNode Modifier and Type Method Description DependencyNodeNodeStack. get(int index)DependencyNodeNodeStack. top()Methods in org.eclipse.aether.internal.impl.collect that return types with arguments of type DependencyNode Modifier and Type Method Description java.util.List<DependencyNode>DataPool. getChildren(java.lang.Object key)Methods in org.eclipse.aether.internal.impl.collect with parameters of type DependencyNode Modifier and Type Method Description private static DefaultDependencyNodeDefaultDependencyCollector. createDependencyNode(java.util.List<Artifact> relocations, DefaultDependencyCollector.PremanagedDependency preManaged, VersionRangeResult rangeResult, Version version, Dependency d, ArtifactDescriptorResult descriptorResult, DependencyNode cycleNode)voidNodeStack. push(DependencyNode node)Method parameters in org.eclipse.aether.internal.impl.collect with type arguments of type DependencyNode Modifier and Type Method Description voidDataPool. putChildren(java.lang.Object key, java.util.List<DependencyNode> children) -
Uses of DependencyNode in org.eclipse.aether.internal.test.util
Methods in org.eclipse.aether.internal.test.util that return DependencyNode Modifier and Type Method Description private DependencyNodeDependencyGraphParser. build(DependencyNode parent, DependencyGraphParser.LineContext ctx, boolean isRoot)DependencyNodeNodeBuilder. build()private DependencyNodeDependencyGraphParser. parse(java.io.BufferedReader in)DependencyNodeDependencyGraphParser. parse(java.net.URL resource)Parse the graph definition read from the given URL.DependencyNodeDependencyGraphParser. parseLiteral(java.lang.String dependencyGraph)Parse the given graph definition.DependencyNodeDependencyGraphParser. parseResource(java.lang.String resource)Parse the graph definition read from the given classpath resource.Methods in org.eclipse.aether.internal.test.util that return types with arguments of type DependencyNode Modifier and Type Method Description java.util.List<DependencyNode>DependencyGraphParser. parseMultiResource(java.lang.String resource)Parse multiple graphs in one resource, divided by "---".Methods in org.eclipse.aether.internal.test.util with parameters of type DependencyNode Modifier and Type Method Description private voidDependencyGraphParser. addNode(DependencyNode root, int level, java.util.List<DependencyGraphParser.NodeEntry> entries)private DependencyNodeDependencyGraphParser. build(DependencyNode parent, DependencyGraphParser.LineContext ctx, boolean isRoot)java.lang.StringDependencyGraphParser. dump(DependencyNode root) -
Uses of DependencyNode in org.eclipse.aether.resolution
Fields in org.eclipse.aether.resolution declared as DependencyNode Modifier and Type Field Description private DependencyNodeArtifactRequest. nodeprivate DependencyNodeDependencyRequest. rootprivate DependencyNodeDependencyResult. rootMethods 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. -
Uses of DependencyNode in org.eclipse.aether.util.filter
Methods in org.eclipse.aether.util.filter with parameters of type DependencyNode Modifier and Type Method Description booleanAbstractPatternDependencyFilter. accept(DependencyNode node, java.util.List<DependencyNode> parents)booleanAndDependencyFilter. accept(DependencyNode node, java.util.List<DependencyNode> parents)booleanExclusionsDependencyFilter. accept(DependencyNode node, java.util.List<DependencyNode> parents)booleanNotDependencyFilter. accept(DependencyNode node, java.util.List<DependencyNode> parents)booleanOrDependencyFilter. accept(DependencyNode node, java.util.List<DependencyNode> parents)booleanScopeDependencyFilter. accept(DependencyNode node, java.util.List<DependencyNode> parents)Method parameters in org.eclipse.aether.util.filter with type arguments of type DependencyNode Modifier and Type Method Description booleanAbstractPatternDependencyFilter. accept(DependencyNode node, java.util.List<DependencyNode> parents)booleanAndDependencyFilter. accept(DependencyNode node, java.util.List<DependencyNode> parents)booleanExclusionsDependencyFilter. accept(DependencyNode node, java.util.List<DependencyNode> parents)booleanNotDependencyFilter. accept(DependencyNode node, java.util.List<DependencyNode> parents)booleanOrDependencyFilter. accept(DependencyNode node, java.util.List<DependencyNode> parents)booleanScopeDependencyFilter. accept(DependencyNode node, java.util.List<DependencyNode> parents) -
Uses of DependencyNode in org.eclipse.aether.util.graph.manager
Methods in org.eclipse.aether.util.graph.manager with parameters of type DependencyNode Modifier and Type Method Description static java.util.Collection<Exclusion>DependencyManagerUtils. getPremanagedExclusions(DependencyNode node)Gets theExclusions of the specified dependency node before dependency management was applied (if any).static java.lang.BooleanDependencyManagerUtils. getPremanagedOptional(DependencyNode node)Gets the optional flag of the specified dependency node before dependency management was applied (if any).static java.util.Map<java.lang.String,java.lang.String>DependencyManagerUtils. getPremanagedProperties(DependencyNode node)Gets the properties of the specified dependency node before dependency management was applied (if any).static java.lang.StringDependencyManagerUtils. getPremanagedScope(DependencyNode node)Gets the scope of the specified dependency node before dependency management was applied (if any).static java.lang.StringDependencyManagerUtils. getPremanagedVersion(DependencyNode node)Gets the version or version range of the specified dependency node before dependency management was applied (if any). -
Uses of DependencyNode in org.eclipse.aether.util.graph.transformer
Fields in org.eclipse.aether.util.graph.transformer declared as DependencyNode Modifier and Type Field Description (package private) DependencyNodeConflictResolver.ConflictItem. node(package private) DependencyNodeConflictResolver.ConflictContext. rootFields in org.eclipse.aether.util.graph.transformer with type parameters of type DependencyNode Modifier and Type Field Description (package private) java.util.Map<java.util.List<DependencyNode>,ConflictResolver.NodeInfo>ConflictResolver.State. infosThe (conceptual) mapping from nodes to extra infos, technically keyed by the node's child list which better captures the identity of a node since we're basically concerned with effects towards children.(package private) java.util.List<DependencyNode>ConflictResolver.ConflictItem. parent(package private) java.util.List<DependencyNode>ConflictResolver.State. parentNodesThe stack of parent nodes.(package private) java.util.Map<java.lang.Object,DependencyNode>ConflictResolver.State. resolvedIdsA mapping from conflict id to winner node, helps to recognize nodes that have their effective scope&optionality set or are leftovers from previous removals.(package private) java.util.Map<java.util.List<DependencyNode>,java.lang.Object>ConflictResolver.State. stackThe set of nodes on the DFS stack to detect cycles, technically keyed by the node's child list to match the dirty graph structure produced by the dependency collector for cycles.Methods in org.eclipse.aether.util.graph.transformer that return DependencyNode Modifier and Type Method Description DependencyNodeConflictResolver.ConflictItem. getNode()Gets the dependency node involved in the conflict.DependencyNodeConflictResolver.ConflictContext. getRoot()Gets the root node of the dependency graph being transformed.private DependencyNodeConflictResolver.State. parent()DependencyNodeChainedDependencyGraphTransformer. transformGraph(DependencyNode node, DependencyGraphTransformationContext context)DependencyNodeConflictIdSorter. transformGraph(DependencyNode node, DependencyGraphTransformationContext context)DependencyNodeConflictMarker. transformGraph(DependencyNode node, DependencyGraphTransformationContext context)After the execution of this method, every DependencyNode with an attached dependency is member of one conflict group.DependencyNodeConflictResolver. transformGraph(DependencyNode node, DependencyGraphTransformationContext context)DependencyNodeJavaDependencyContextRefiner. transformGraph(DependencyNode node, DependencyGraphTransformationContext context)DependencyNodeNoopDependencyGraphTransformer. transformGraph(DependencyNode node, DependencyGraphTransformationContext context)Methods in org.eclipse.aether.util.graph.transformer that return types with arguments of type DependencyNode Modifier and Type Method Description private java.util.Map<DependencyNode,java.lang.Object>ConflictMarker. mark(java.util.Collection<DependencyNode> nodes, java.util.Map<java.lang.Object,ConflictMarker.ConflictGroup> groups)Methods in org.eclipse.aether.util.graph.transformer with parameters of type DependencyNode Modifier and Type Method Description (package private) voidConflictResolver.State. add(DependencyNode node)private voidConflictMarker. analyze(DependencyNode node, java.util.Map<DependencyNode,java.lang.Object> nodes, java.util.Map<java.lang.Object,ConflictMarker.ConflictGroup> groups, int[] counter)private voidConflictIdSorter. buildConflitIdDAG(java.util.Map<java.lang.Object,ConflictIdSorter.ConflictId> ids, DependencyNode node, ConflictIdSorter.ConflictId id, int depth, java.util.Map<DependencyNode,java.lang.Object> visited, java.util.Map<?,?> conflictIds)private booleanConflictResolver.State. deriveOptional(DependencyNode node, java.lang.Object conflictId)private java.lang.StringConflictResolver.State. deriveScope(DependencyNode node, java.lang.Object conflictId)private booleanConflictResolver. gatherConflictItems(DependencyNode node, ConflictResolver.State state)private java.lang.StringJavaDependencyContextRefiner. getClasspathScope(DependencyNode node)ConflictResolver.OptionalitySelectorConflictResolver.OptionalitySelector. getInstance(DependencyNode root, DependencyGraphTransformationContext context)Retrieves the optionality selector for use during the specified graph transformation.ConflictResolver.ScopeDeriverConflictResolver.ScopeDeriver. getInstance(DependencyNode root, DependencyGraphTransformationContext context)Retrieves the scope deriver for use during the specified graph transformation.ConflictResolver.ScopeSelectorConflictResolver.ScopeSelector. getInstance(DependencyNode root, DependencyGraphTransformationContext context)Retrieves the scope selector for use during the specified graph transformation.ConflictResolver.VersionSelectorConflictResolver.VersionSelector. getInstance(DependencyNode root, DependencyGraphTransformationContext context)Retrieves the version selector for use during the specified graph transformation.private java.util.Set<java.lang.Object>ConflictMarker. getKeys(DependencyNode node)booleanConflictResolver.ConflictContext. isIncluded(DependencyNode node)Determines whether the specified dependency node belongs to this conflict context.(package private) booleanConflictResolver.State. loser(DependencyNode node, java.lang.Object conflictId)private ConflictResolver.ConflictItemConflictResolver.State. newConflictItem(DependencyNode parent, DependencyNode node)(package private) booleanConflictResolver.State. push(DependencyNode node, java.lang.Object conflictId)DependencyNodeChainedDependencyGraphTransformer. transformGraph(DependencyNode node, DependencyGraphTransformationContext context)DependencyNodeConflictIdSorter. transformGraph(DependencyNode node, DependencyGraphTransformationContext context)DependencyNodeConflictMarker. transformGraph(DependencyNode node, DependencyGraphTransformationContext context)After the execution of this method, every DependencyNode with an attached dependency is member of one conflict group.DependencyNodeConflictResolver. transformGraph(DependencyNode node, DependencyGraphTransformationContext context)DependencyNodeJavaDependencyContextRefiner. transformGraph(DependencyNode node, DependencyGraphTransformationContext context)DependencyNodeNoopDependencyGraphTransformer. transformGraph(DependencyNode node, DependencyGraphTransformationContext context)Method parameters in org.eclipse.aether.util.graph.transformer with type arguments of type DependencyNode Modifier and Type Method Description private voidConflictMarker. analyze(DependencyNode node, java.util.Map<DependencyNode,java.lang.Object> nodes, java.util.Map<java.lang.Object,ConflictMarker.ConflictGroup> groups, int[] counter)private java.util.Map<DependencyNode,java.lang.Object>ConflictMarker. mark(java.util.Collection<DependencyNode> nodes, java.util.Map<java.lang.Object,ConflictMarker.ConflictGroup> groups)Constructors in org.eclipse.aether.util.graph.transformer with parameters of type DependencyNode Constructor Description ConflictContext(DependencyNode root, java.lang.Object conflictId, java.util.Map<DependencyNode,java.lang.Object> conflictIds, java.util.Collection<ConflictResolver.ConflictItem> items)Creates a new conflict context.ConflictContext(DependencyNode root, java.util.Map<?,?> conflictIds, java.util.Collection<ConflictResolver.ConflictItem> items)ConflictItem(DependencyNode parent, DependencyNode node, int depth, int optionalities, java.lang.String... scopes)Creates a new conflict item with the specified properties.ConflictItem(DependencyNode parent, DependencyNode node, java.lang.String scope, boolean optional)State(DependencyNode root, java.util.Map<?,?> conflictIds, int conflictIdCount, DependencyGraphTransformationContext context)Constructor parameters in org.eclipse.aether.util.graph.transformer with type arguments of type DependencyNode Constructor Description ConflictContext(DependencyNode root, java.lang.Object conflictId, java.util.Map<DependencyNode,java.lang.Object> conflictIds, java.util.Collection<ConflictResolver.ConflictItem> items)Creates a new conflict context. -
Uses of DependencyNode in org.eclipse.aether.util.graph.visitor
Fields in org.eclipse.aether.util.graph.visitor declared as DependencyNode Modifier and Type Field Description private DependencyNodeCloningDependencyVisitor. rootFields in org.eclipse.aether.util.graph.visitor with type parameters of type DependencyNode Modifier and Type Field Description private java.util.Map<DependencyNode,DependencyNode>CloningDependencyVisitor. clonesprivate java.util.Map<DependencyNode,DependencyNode>CloningDependencyVisitor. clonesprotected java.util.List<DependencyNode>AbstractDepthFirstNodeListGenerator. nodesprivate Stack<DependencyNode>CloningDependencyVisitor. parentsprivate Stack<DependencyNode>FilteringDependencyVisitor. parentsprivate Stack<DependencyNode>PathRecordingDependencyVisitor. parentsprivate java.util.List<java.util.List<DependencyNode>>PathRecordingDependencyVisitor. pathsprivate java.util.Map<DependencyNode,java.lang.Object>AbstractDepthFirstNodeListGenerator. visitedNodesprivate java.util.Map<DependencyNode,java.lang.Object>TreeDependencyVisitor. visitedNodesMethods in org.eclipse.aether.util.graph.visitor that return DependencyNode Modifier and Type Method Description protected DependencyNodeCloningDependencyVisitor. clone(DependencyNode node)Creates a clone of the specified node.DependencyNodeCloningDependencyVisitor. getRootNode()Gets the root node of the cloned dependency graph.Methods in org.eclipse.aether.util.graph.visitor that return types with arguments of type DependencyNode Modifier and Type Method Description java.util.List<DependencyNode>AbstractDepthFirstNodeListGenerator. getNodes()Gets the list of dependency nodes that was generated during the graph traversal.java.util.List<java.util.List<DependencyNode>>PathRecordingDependencyVisitor. getPaths()Gets the paths leading to nodes matching the filter that have been recorded during the graph visit.Methods in org.eclipse.aether.util.graph.visitor with parameters of type DependencyNode Modifier and Type Method Description protected DependencyNodeCloningDependencyVisitor. clone(DependencyNode node)Creates a clone of the specified node.protected booleanAbstractDepthFirstNodeListGenerator. setVisited(DependencyNode node)Marks the specified node as being visited and determines whether the node has been visited before.abstract booleanAbstractDepthFirstNodeListGenerator. visitEnter(DependencyNode node)booleanCloningDependencyVisitor. visitEnter(DependencyNode node)booleanFilteringDependencyVisitor. visitEnter(DependencyNode node)booleanPathRecordingDependencyVisitor. visitEnter(DependencyNode node)booleanPostorderNodeListGenerator. visitEnter(DependencyNode node)booleanPreorderNodeListGenerator. visitEnter(DependencyNode node)booleanTreeDependencyVisitor. visitEnter(DependencyNode node)abstract booleanAbstractDepthFirstNodeListGenerator. visitLeave(DependencyNode node)booleanCloningDependencyVisitor. visitLeave(DependencyNode node)booleanFilteringDependencyVisitor. visitLeave(DependencyNode node)booleanPathRecordingDependencyVisitor. visitLeave(DependencyNode node)booleanPostorderNodeListGenerator. visitLeave(DependencyNode node)booleanPreorderNodeListGenerator. visitLeave(DependencyNode node)booleanTreeDependencyVisitor. visitLeave(DependencyNode node)
-