public interface

InjectorGrapher

com.google.inject.grapher.InjectorGrapher
Known Indirect Subclasses

Class Overview

Guice injector grapher. Renders the guice dependency graph for an injector. It can render the whole dependency graph or just transitive dependencies of a given set of nodes.

Summary

Public Methods
abstract void graph(Injector injector)
Graphs the guice dependency graph for the given injector using default starting keys.
abstract void graph(Injector injector, Set<Key<?>> root)
Graphs the guice dependency graph for the given injector using the given starting keys and their transitive dependencies.

Public Methods

public abstract void graph (Injector injector)

Graphs the guice dependency graph for the given injector using default starting keys.

Throws
IOException

public abstract void graph (Injector injector, Set<Key<?>> root)

Graphs the guice dependency graph for the given injector using the given starting keys and their transitive dependencies.

Throws
IOException