Back to project page StreamHub-Android-Reviews-App.
The source code is released under:
MIT License
If you think the Android project StreamHub-Android-Reviews-App 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 livefyre; /*ww w. j a va2 s. co m*/ public class AppSingleton { private static AppSingleton appSingleton = new AppSingleton(); private LivefyreApplication application; private AppSingleton() { } public static AppSingleton getInstance() { if(appSingleton == null) appSingleton = new AppSingleton(); return appSingleton; } public LivefyreApplication getApplication() { return application; } public void setApplication(LivefyreApplication application) { this.application = application; } }