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; /*w w w . jav a 2 s. com*/ public class GameOverEventHandler extends EventHandler<Game.GameOverListener, GameOverEventObject> { public void fireOnGameOver(Game game, boolean won) { if (hasListeners()) { GameOverEventObject eventObject = new GameOverEventObject(game, won); notifyListeners(eventObject); } } @Override protected void notifyListener(Game.GameOverListener listener, GameOverEventObject args) { listener.onGameOver(args); } }