Back to project page YesNoGame.
The source code is released under:
GNU General Public License
If you think the Android project YesNoGame 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 example.swa.yesnogame.service; /*w ww.j a v a 2s .co m*/ /** * Factory to provide an instance of the IPollService service. * * @author Hendrik.Stilke@siemens.com * */ public class PollServiceProvider { private static IPollService theInstance = new PollServiceMock(); // private static IPollService theInstance = new PollService(); // private static IPollService theInstance = new PollServiceCloud(); public static IPollService getService() { return theInstance; } }