com.google.inject.spi
Interface InjectionListener<I>


public interface InjectionListener<I>

Listens for injections into instances of type I. Useful for performing further injections, post-injection initialization, and more.

Since:
2.0
Author:
[email protected] (Bob Lee), [email protected] (Jesse Wilson)

Method Summary
 void afterInjection(I injectee)
          Invoked by Guice after it injects the fields and methods of instance.
 

Method Detail

afterInjection

void afterInjection(I injectee)
Invoked by Guice after it injects the fields and methods of instance.

Parameters:
injectee - instance that Guice injected dependencies into


Copyright © 2006-2014 Google, Inc.. All Rights Reserved.