Back to project page Amphitheatre.
The source code is released under:
Apache License
If you think the Android project Amphitheatre 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.jerrellmardis.amphitheatre.api; /* www. j ava2 s.c o m*/ /** * For access the different media clients available */ public class ApiClient { private static MediaClientFactory instance = null; private ApiClient() { } public static synchronized MediaClientFactory getInstance() { if (instance == null) { instance = new MediaClientFactory(); } return instance; } }