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.
| 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected