Back to project page AndroSol.
The source code is released under:
MIT License
If you think the Android project AndroSol 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 lib.cards.models; //from ww w . j ava2 s .c o m public class NewGameEventHandler extends EventHandler<Game.NewGameListener, GameEventObject> { public void fireOnNewGame(Game game) { if (hasListeners()) { GameEventObject eventObject = new GameEventObject(game); notifyListeners(eventObject); } } @Override public void notifyListener(Game.NewGameListener listener, GameEventObject eventObject) { listener.onNewGameAction(eventObject); } }