class StatusBar extends JComponent {
JLabel l = new JLabel("ready");
public StatusBar() {
super();
setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
add(l);
}
public void setText( String prompt ) {
l.setText(prompt);
setVisible( true );
}
public void paint(Graphics g) {
super.paint(g);
}
}