|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DependencyGraph | |
---|---|
org.jvnet.maven.plugin.antrun |
Uses of DependencyGraph in org.jvnet.maven.plugin.antrun |
---|
Methods in org.jvnet.maven.plugin.antrun that return DependencyGraph | |
---|---|
protected DependencyGraph |
DependencyGraphTask.buildGraph(GraphFilter filter)
Transforms a graph by applying the given filter to thtese "source graph", which is determined by the various parameter to this task. |
DependencyGraph |
DependencyGraph.createSubGraph(DependencyGraph.Node root)
Creates a full subgraph rooted at the given node. |
DependencyGraph |
DependencyGraph.createSubGraph(DependencyGraph.Node root,
java.util.Collection<DependencyGraph.Node> nodes)
Creates a sub-graph from the given set of nodes (which must be subset of nodes in the current graph) with all edges { (u,v) | u \in nodes, v \in nodes } |
DependencyGraph |
DependencyGraph.createSubGraph(DependencyGraph.Node node,
GraphVisitor visitor)
Visits the graph started at the given node, and creates a sub-graph from visited nodes and edges. |
DependencyGraph |
DependencyGraph.createSubGraph(GraphVisitor visitor)
Accepts the visitor and invoke its visitor methods to create a sub-graph. |
protected DependencyGraph |
GraphFilter.evaluateChild()
Short for evaluateChild(0) , for those fitlers that only have one child. |
protected DependencyGraph |
GraphFilter.evaluateChild(int index)
Evaluate the n-th child GraphFilter . |
DependencyGraph |
DependencyExclusionFilter.filter(DependencyGraph g)
|
DependencyGraph |
SubtractFilter.process()
|
DependencyGraph |
FullGraphFilter.process()
|
DependencyGraph |
ListFilter.process()
|
DependencyGraph |
ScopeFilter.process()
|
DependencyGraph |
VisualizeFilter.process()
|
DependencyGraph |
VisualizeFilter.Subgraph.process()
|
DependencyGraph |
RetentionSetFilter.process()
|
abstract DependencyGraph |
GraphFilter.process()
|
DependencyGraph |
GraphRefFilter.process()
|
DependencyGraph |
SubGraphFilter.process()
|
DependencyGraph |
DependencyExclusionFilter.process()
|
DependencyGraph |
DumpGraphFilter.process()
|
Methods in org.jvnet.maven.plugin.antrun with parameters of type DependencyGraph | |
---|---|
void |
GraphVizVisualizer.addColoredSubgraph(DependencyGraph g,
java.lang.String color)
Paint all edges and nodes that belong to the given subgraph by using the specified color. |
DependencyGraph |
DependencyExclusionFilter.filter(DependencyGraph g)
|
java.util.List<DependencyGraph.Edge> |
DependencyGraph.Node.getBackwardEdges(DependencyGraph g)
Gets the backward dependency edges (modules that depend on this module.) |
java.util.List<DependencyGraph.Node> |
DependencyGraph.Node.getBackwardNodes(DependencyGraph g)
Gets the nodes that depend on the given node. |
java.util.List<DependencyGraph.Edge> |
DependencyGraph.Node.getForwardEdges(DependencyGraph g)
Gets the forward dependency edges (modules that this module depends on.) |
java.util.List<DependencyGraph.Node> |
DependencyGraph.Node.getForwardNodes(DependencyGraph g)
Gets the nodes that the given node depends on. |
java.util.List<DependencyGraph.Edge> |
DependencyGraph.Node.getTrail(DependencyGraph graph)
Builds the dependency trail from this node to the root node, in that order. |
Constructors in org.jvnet.maven.plugin.antrun with parameters of type DependencyGraph | |
---|---|
DependencyGraph.Edge(DependencyGraph g,
DependencyGraph.Node src,
DependencyGraph.Node dst,
java.lang.String scope,
boolean optional)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |