FileDocCategorySizeDatePackage
GameStatusLabel.javaAPI DocExample926Tue Dec 12 18:58:42 GMT 2000bingo.shared

GameStatusLabel

public class GameStatusLabel extends JLabel implements GameListener

Fields Summary
protected static String
initialStatusString
Constructors Summary
public GameStatusLabel()


      
	super(initialStatusString, LEFT);

        try {
            new GameListenerThread(this).start();
        } catch (java.io.IOException e) {
	    //XXX: what to do?
	    System.err.println("IOException when starting GameListenerThread.");
        }
    
Methods Summary
public voidupdateStatus(java.lang.String message)

	setText(message);