MCPcopy Index your code
hub / github.com/google/dagger / rootComponentNode

Method rootComponentNode

java/dagger/model/BindingGraph.java:111–116  ·  view source on GitHub ↗

Returns the component node for the root component.

()

Source from the content-addressed store, hash-verified

109
110 /** Returns the component node for the root component. */
111 public ComponentNode rootComponentNode() {
112 return componentNodeStream()
113 .filter(node -> node.componentPath().atRoot())
114 .findFirst()
115 .get();
116 }
117
118 /** Returns the dependency edges. */
119 public ImmutableSet<DependencyEdge> dependencyEdges() {

Callers 5

visitGraphMethod · 0.80
writeMethod · 0.80
visitGraphMethod · 0.80
WorkerMethod · 0.80
printAtEntryPointMethod · 0.80

Calls 4

componentNodeStreamMethod · 0.95
getMethod · 0.65
componentPathMethod · 0.65
atRootMethod · 0.45

Tested by 2

visitGraphMethod · 0.64
writeMethod · 0.64