public static interface

BindingEdge.Factory

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

Class Overview

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

Summary

Public Methods
abstract T newBindingEdge(K fromId, K toId)
Creates a new BindingEdge instance and adds it to the graph.

Public Methods

public abstract T newBindingEdge (K fromId, K toId)

Creates a new BindingEdge instance and adds it to the graph.

Parameters
fromId Node ID for the interface node.
toId Node ID for the implementation (class or instance) node.
Returns