All pastes #2058069 Raw Edit

Miscellany

public text v1 · immutable
#2058069 ·published 2011-05-13 11:36 UTC
rendered paste body
    public void gameOver(String a){
        content.remove(score);
        score.setEditable(false);
        score = new JTextArea(a);
        score.setSize(5, 30);
        score.setFont(new Font("arial",3,50));
        content.add(score,BorderLayout.EAST);
        pack();
        repaint();
    }