Back to project page Android_Yellow_Pages_App_TDD.
The source code is released under:
Apache License
If you think the Android project Android_Yellow_Pages_App_TDD listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.tddrampup; //from w w w . j ava 2 s. c o m import com.google.inject.AbstractModule; import com.tddrampup.factories.CameraUpdateFactoryWrapper; import com.tddrampup.factories.CameraUpdateFactoryWrapperInterface; import com.tddrampup.factories.MarkerOptionsFactoryWrapper; import com.tddrampup.factories.MarkerOptionsFactoryWrapperInterface; import com.tddrampup.singletons.Listings; import com.tddrampup.singletons.ListingsInterface; /** * Created by WX009-PC on 2/24/14. */ public class ApplicationModule extends AbstractModule { @Override protected void configure() { bind(ListingsInterface.class).to(Listings.class); bind(CameraUpdateFactoryWrapperInterface.class).to(CameraUpdateFactoryWrapper.class); bind(MarkerOptionsFactoryWrapperInterface.class).to(MarkerOptionsFactoryWrapper.class); } }