Uses of Interface
com.google.inject.MembersInjector
Packages that use MembersInjector
Package
Description
Google Guice (pronounced "juice") is an ultra-lightweight dependency injection framework.
Guice (sounds like "juice")
Guice service provider interface
-
Uses of MembersInjector in com.google.inject
Methods in com.google.inject that return MembersInjectorModifier and TypeMethodDescriptionprotected <T> MembersInjector<T> AbstractModule.getMembersInjector(TypeLiteral<T> type) protected <T> MembersInjector<T> AbstractModule.getMembersInjector(Class<T> type) <T> MembersInjector<T> Binder.getMembersInjector(TypeLiteral<T> typeLiteral) Returns the members injector used to inject dependencies into methods and fields on instances of the given typeT.<T> MembersInjector<T> Binder.getMembersInjector(Class<T> type) Returns the members injector used to inject dependencies into methods and fields on instances of the given typeT.<T> MembersInjector<T> Injector.getMembersInjector(TypeLiteral<T> typeLiteral) Returns the members injector used to inject dependencies into methods and fields on instances of the given typeT.<T> MembersInjector<T> Injector.getMembersInjector(Class<T> type) Returns the members injector used to inject dependencies into methods and fields on instances of the given typeT.protected <T> MembersInjector<T> PrivateModule.getMembersInjector(TypeLiteral<T> type) protected <T> MembersInjector<T> PrivateModule.getMembersInjector(Class<T> type) -
Uses of MembersInjector in com.google.inject.internal
Methods in com.google.inject.internal with parameters of type MembersInjectorModifier and TypeMethodDescriptionstatic InternalProvisionExceptionInternalProvisionException.errorInUserInjector(MembersInjector<?> listener, TypeLiteral<?> type, RuntimeException cause) -
Uses of MembersInjector in com.google.inject.spi
Methods in com.google.inject.spi that return MembersInjectorModifier and TypeMethodDescriptionMembersInjectorLookup.getDelegate()Returns the delegate members injector, ornullif it has not yet been initialized.MembersInjectorLookup.getMembersInjector()Returns the looked up members injector.<T> MembersInjector<T> TypeEncounter.getMembersInjector(TypeLiteral<T> typeLiteral) Returns the members injector used to inject dependencies into methods and fields on instances of the given typeT.<T> MembersInjector<T> TypeEncounter.getMembersInjector(Class<T> type) Returns the members injector used to inject dependencies into methods and fields on instances of the given typeT.Methods in com.google.inject.spi with parameters of type MembersInjectorModifier and TypeMethodDescriptionvoidMembersInjectorLookup.initializeDelegate(MembersInjector<T> delegate) Sets the actual members injector.voidTypeEncounter.register(MembersInjector<? super I> membersInjector) Registers a members injector for typeI.