| Class | Description |
|---|---|
| BindingTracingVisitor |
Visitor for logging the entire binding information for each Element
To use with
InjectorBuilder,
InjectorBuilder
.withModules(new MyApplicationModule)
.forEachElement(new BindingTracingVisitor())
.createInjector();
|
| IsNotStaticInjectionVisitor |
Predicate visitor that returns 'true' if an Element is a requestStaticInjection.
|
| IsStaticInjectionVisitor |
Predicate visitor that returns 'true' if an Element is a requestStaticInjection.
|
| KeyTracingVisitor |
Visitor for logging only the Key for each
Element binding
To use with InjectorBuilder
InjectorBuilder
.fromModule(new MyApplicationModule)
.forEachElement(new BindingTracingVisitor())
.createInjector();
|
| ModuleSourceTracingVisitor |
Visitor for logging the 'path' through which each binding was created
|
| WarnOfStaticInjectionVisitor |
Visitor that log a warning for any use of requestStaticInjection
|