public interface

MembersInjector

com.google.inject.MembersInjector<T>

Class Overview

Injects dependencies into the fields and methods on instances of type T. Ignores the presence or absence of an injectable constructor.

Summary

Public Methods
abstract void injectMembers(T instance)
Injects dependencies into the fields and methods of instance.

Public Methods

public abstract void injectMembers (T instance)

Injects dependencies into the fields and methods of instance. Ignores the presence or absence of an injectable constructor.

Whenever Guice creates an instance, it performs this injection automatically (after first performing constructor injection), so if you're able to let Guice create all your objects for you, you'll never need to use this method.

Parameters
instance to inject members on. May be null.