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

Class ComponentNode

java/dagger/model/BindingGraph.java:327–336  ·  view source on GitHub ↗

A component node in the graph. Every entry point plain DependencyEdge dependency edge's source node is a component node for the component containing the entry point.

Source from the content-addressed store, hash-verified

325 * edge}'s source node is a component node for the component containing the entry point.
326 */
327 @AutoValue
328 public abstract static class ComponentNode implements Node {
329 static ComponentNode create(ComponentPath componentPath) {
330 return new AutoValue_BindingGraph_ComponentNode(componentPath);
331 }
332
333 /** The component represented by this node. */
334 @Override
335 public abstract ComponentPath componentPath();
336 }
337}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected