Package | Description |
---|---|
org.apache.maven.repository.metadata |
Modifier and Type | Field and Description |
---|---|
(package private) MetadataGraphVertex |
MetadataGraph.entry
the entry point we started building the graph from
|
(package private) MetadataGraphVertex |
MetadataGraphEdge.source
capturing where this link came from
and where it is linked to.
|
(package private) MetadataGraphVertex |
MetadataGraphEdge.target |
Modifier and Type | Field and Description |
---|---|
(package private) java.util.Map<MetadataGraphVertex,java.util.List<MetadataGraphEdge>> |
MetadataGraph.excidentEdges |
(package private) java.util.Map<MetadataGraphVertex,java.util.List<MetadataGraphEdge>> |
MetadataGraph.incidentEdges
incident and excident edges per node
|
(package private) java.util.TreeSet<MetadataGraphVertex> |
MetadataGraph.vertices |
(package private) java.util.List<MetadataGraphVertex> |
DefaultClasspathTransformation.ClasspathGraphVisitor.visited |
Modifier and Type | Method and Description |
---|---|
MetadataGraphVertex |
MetadataGraph.addVertex(ArtifactMetadata md) |
MetadataGraphVertex |
MetadataGraph.findVertex(ArtifactMetadata md) |
MetadataGraphVertex |
MetadataGraph.getEntry() |
MetadataGraphVertex |
MetadataGraphEdge.getSource() |
MetadataGraphVertex |
MetadataGraphEdge.getTarget() |
Modifier and Type | Method and Description |
---|---|
java.util.TreeSet<MetadataGraphVertex> |
MetadataGraph.getVertices() |
Modifier and Type | Method and Description |
---|---|
MetadataGraph |
MetadataGraph.addEdge(MetadataGraphVertex vFrom,
MetadataGraphVertex vTo,
MetadataGraphEdge e) |
private static void |
MetadataGraph.checkVertex(MetadataGraphVertex v) |
private MetadataGraphEdge |
DefaultGraphConflictResolver.cleanEdges(MetadataGraphVertex v,
java.util.List<MetadataGraphEdge> edges,
ArtifactScopeEnum scope) |
int |
MetadataGraphVertex.compareTo(MetadataGraphVertex vertex) |
java.util.List<MetadataGraphEdge> |
MetadataGraph.getEdgesBetween(MetadataGraphVertex vFrom,
MetadataGraphVertex vTo) |
java.util.List<MetadataGraphEdge> |
MetadataGraph.getExcidentEdges(MetadataGraphVertex vertex) |
java.util.List<MetadataGraphEdge> |
MetadataGraph.getIncidentEdges(MetadataGraphVertex vertex) |
private void |
MetadataGraph.processTreeNodes(MetadataGraphVertex parentVertex,
MetadataTreeNode node,
int depth,
int pomOrder) |
MetadataGraph |
MetadataGraph.removeVertex(MetadataGraphVertex v) |
void |
MetadataGraph.setEntry(MetadataGraphVertex entry) |
void |
MetadataGraphEdge.setSource(MetadataGraphVertex source) |
void |
MetadataGraphEdge.setTarget(MetadataGraphVertex target) |
protected void |
DefaultClasspathTransformation.ClasspathGraphVisitor.visit(MetadataGraphVertex node) |
private void |
DefaultGraphConflictResolver.visit(MetadataGraphVertex from,
java.util.List<MetadataGraphVertex> visited,
MetadataGraph graph) |
Modifier and Type | Method and Description |
---|---|
private void |
DefaultGraphConflictResolver.visit(MetadataGraphVertex from,
java.util.List<MetadataGraphVertex> visited,
MetadataGraph graph) |
Constructor and Description |
---|
MetadataGraph(MetadataGraphVertex entry)
construct a single vertex
|