public static interface

DependencyEdge.Factory

com.google.inject.grapher.DependencyEdge.Factory<K, T extends com.google.inject.grapher.DependencyEdge<K>>
Known Indirect Subclasses

Class Overview

Factory interface for DependencyEdges. Renderer implementations will need to provide an implementation for this.

Summary

Public Methods
abstract T newDependencyEdge(K fromId, InjectionPoint fromPoint, K toId)
Creates a new DependencyEdge and adds it to the graph.

Public Methods

public abstract T newDependencyEdge (K fromId, InjectionPoint fromPoint, K toId)

Creates a new DependencyEdge and adds it to the graph.

Parameters
fromId The ID for the class or instance node that has the dependency.
fromPoint The point where the dependency will be @Injected.
toId The ID for the interface node that satisfies the dependency.