Back to project page hubblog.
The source code is released under:
MIT License
If you think the Android project hubblog 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.donskifarrell.Hubblog; //from www.jav a2 s. co m import com.donskifarrell.Hubblog.Interfaces.DataProvider; import com.donskifarrell.Hubblog.Providers.HubblogDataProvider; import com.google.inject.AbstractModule; /** * Created with IntelliJ IDEA. * User: donski * Date: 22/11/13 * Time: 17:00 */ public class BindingModule extends AbstractModule { @Override protected void configure() { //bind(DataProvider.class).to(HubblogDataProvider.class); } }