
com.shipdream.lib.android.mvc.Injector Maven / Gradle / Ivy
package com.shipdream.lib.android.mvc;
import com.shipdream.lib.poke.exception.PokeException;
public class Injector {
static MvcGraph mvcGraph;
/**
* Config the dependencies of MvcGraph. Be careful to use this method because it will dump the
* existing graph and all injectable instances managed by it
* @param dependencies the dependencies.
*/
public static void configGraph(MvcGraph.BaseDependencies dependencies) {
try {
mvcGraph = new MvcGraph(dependencies);
} catch (PokeException e) {
throw new RuntimeException(e);
}
}
/**
* Get the graph managing injectable objects.
* @return
*/
public static MvcGraph getGraph() {
if (mvcGraph == null) {
throw new RuntimeException("In unit testing, the graph needs to be mocked before running tests. See how the graph is prepared by TestControllerBase#prepareGraph() in https://github.com/kejunxia/AndroidMvc/blob/master/samples/note/core/src/test/java/com/shipdream/lib/android/mvc/samples/note/controller/internal/TestControllerBase.java");
}
return mvcGraph;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy