Back to project page Stack-Chat.
The source code is released under:
MIT License
If you think the Android project Stack-Chat 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.noahhuppert.stackchat.modules; /* www . ja v a 2s .c o m*/ /** * Created by Noah Huppert on 11/7/2014. */ import com.noahhuppert.stackchat.controllers.PopNotificationController; import com.noahhuppert.stackchat.controllers.NotificationController; import dagger.Module; import dagger.Provides; /** * Module for all pop flavor specific injections */ @Module( overrides = true, injects = { NotificationController.class } ) public class StackChatModule { /** * Provides a {@link com.noahhuppert.stackchat.controllers.JellyKitNotificationController} for Dagger * @return */ @Provides public NotificationController provideNotificationController(){ return new PopNotificationController(); } }