AndroidInjector.Factory
Package dagger.android
Interface AndroidInjector.Factory<T>
- Type Parameters:
T- the concrete type to be injected
- All Known Implementing Classes:
AndroidInjector.Builder
- Enclosing interface:
- AndroidInjector<T>
public static interface AndroidInjector.Factory<T>
Creates AndroidInjectors for a concrete subtype of a core Android type.
-
Method Summary
-
Method Details
-
create
AndroidInjector<T> create
(@BindsInstance T instance) Creates an
AndroidInjectorforinstance. This should be the same instance that will be passed toAndroidInjector.inject(Object).
-