net.vee.btech.saikoro.event
Interface GameManagerListener
- All Superinterfaces:
- java.util.EventListener
- All Known Implementing Classes:
- Saikoro
- public interface GameManagerListener
- extends java.util.EventListener
A GameManager event listener. Classes implmenting this
interface can register with a GameManager to listen for game
management events.
replacingGame
public void replacingGame(GameManagerEvent e)
- This method is invoked when the current game is about to
be replaced with another. The manager's game may be null.
- Parameters:
e - the event describing the mutation.
replacedGame
public void replacedGame(GameManagerEvent e)
- This method is invoked when a game has just been relaced
with another. The manager's game or the event's previous
game may be null.
- Parameters:
e - the event describing the mutation.