Back to project page NerdRoll.
The source code is released under:
Apache License
If you think the Android project NerdRoll 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.bignerdranch.android.nerdroll.android; /* w w w. j a v a2s.co m*/ import com.bignerdranch.android.nerdroll.MainActivity; import javax.inject.Singleton; import dagger.Module; import dagger.Provides; @Module(injects = MainActivity.class) public class ActionBarModule { @Provides @Singleton ActionBarOwner provideActionBarOwner() { return new ActionBarOwner(); } }