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

Method entryPointBindingNodes

java/dagger/model/BindingGraph.java:158–162  ·  view source on GitHub ↗

Returns the binding nodes for bindings that directly satisfy entry points.

()

Source from the content-addressed store, hash-verified

156
157 /** Returns the binding nodes for bindings that directly satisfy entry points. */
158 public ImmutableSet<BindingNode> entryPointBindingNodes() {
159 return entryPointEdgeStream()
160 .map(edge -> (BindingNode) incidentNodes(edge).target())
161 .collect(toImmutableSet());
162 }
163
164 /** Returns the edges for entry points that transitively depend on a binding. */
165 public ImmutableSet<DependencyEdge> entryPointEdgesDependingOnBindingNode(

Callers 1

dotNodeMethod · 0.80

Calls 4

entryPointEdgeStreamMethod · 0.95
incidentNodesMethod · 0.80
toImmutableSetMethod · 0.80
mapMethod · 0.65

Tested by

no test coverage detected