poker
Interface GameObserver

All Known Subinterfaces:
Player

public interface GameObserver

An interface for a poker game observer.

Version:
1.2.0
Author:
Aaron Davidson

Method Summary
 void actionEvent(int pos, int action, int amount)
           
 void gameOverEvent()
           
 void gameStartEvent(GameInfo gi)
           
 void showdownEvent(int pos, Card c1, Card c2)
           
 void stageEvent(int stage)
           
 void winEvent(int pos, int amount, java.lang.String handName)
           
 

Method Detail

gameStartEvent

void gameStartEvent(GameInfo gi)

actionEvent

void actionEvent(int pos,
                 int action,
                 int amount)

stageEvent

void stageEvent(int stage)

showdownEvent

void showdownEvent(int pos,
                   Card c1,
                   Card c2)

winEvent

void winEvent(int pos,
              int amount,
              java.lang.String handName)

gameOverEvent

void gameOverEvent()