Small documentation update on Injector

This commit is contained in:
Bradlee Speice 2014-11-11 23:26:01 -05:00
parent 7cfe273cb6
commit 35b515add7

View File

@ -1,7 +1,8 @@
package org.bspeice.minimalbible; package org.bspeice.minimalbible;
/** /**
* Created by bspeice on 7/2/14. * Define a simple interface for classes to receive an object to provide their dependencies.
* This way, the dependencies can be provided by an activity, or a test module, etc.
*/ */
public interface Injector { public interface Injector {
public void inject(Object o); public void inject(Object o);