blob: e20e9b8384d1724d0d76c16fb13912a3cd723022 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package imaging.framework;
import java.awt.*;
import gjt.Separator;
class StatusDisplay extends Panel
{
public StatusDisplay ()
{
this.setLayout (new BorderLayout ());
this.textField_.setEditable (false);
this.add ("North", new Separator ());
this.add ("Center", this.textField_);
this.add ("South", new Separator ());
}
public void setText (String s)
{
this.textField_.setText (s);
}
private TextField textField_ = new TextField ();
}
|