Back to project page AllBinary-Platform-Game.
The source code is released under:
AllBinary Open License Version 1.0 Copyright (c) 2011 AllBinary. By agreeing to this license you and any business entity you represent are legally bound to this legal agreement. You may transmit, m...
If you think the Android project AllBinary-Platform-Game 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 org.allbinary.game.testgamedemo; /* ww w . j av a 2s . c o m*/ import javax.microedition.midlet.MIDlet; import allbinary.midlet.MidletFactoryInterface; public class TestDemoGameMIDletFactory extends MidletFactoryInterface { private static MIDlet SINGLETON = null; public MIDlet getInstance() { if(SINGLETON == null) { SINGLETON = new TestGameDemoMIDlet(); } return SINGLETON; } }