Uses of Class
com.google.inject.grapher.Edge
-
Packages that use Edge Package Description com.google.inject.grapher -
-
Uses of Edge in com.google.inject.grapher
Subclasses of Edge in com.google.inject.grapher Modifier and Type Class Description class
BindingEdge
Edge that connects an interface to the type or instance that is bound to implement it.class
DependencyEdge
Edge from a class orInjectionPoint
to the interface node that will satisfy the dependency.Methods in com.google.inject.grapher that return Edge Modifier and Type Method Description Edge
BindingEdge. copy(NodeId fromId, NodeId toId)
Edge
DependencyEdge. copy(NodeId fromId, NodeId toId)
abstract Edge
Edge. copy(NodeId fromId, NodeId toId)
Returns a copy of the edge with new node IDs.Methods in com.google.inject.grapher that return types with arguments of type Edge Modifier and Type Method Description Iterable<Edge>
EdgeCreator. getEdges(Iterable<Binding<?>> bindings)
Returns edges for the given dependency graph.
-