home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sams Teach Yourself C in 21 Days (6th Edition)
/
STYC216E.ISO
/
mac
/
Examples
/
Day27
/
window.java
< prev
next >
Wrap
Text File
|
2002-05-26
|
453b
|
19 lines
import java.awt.*;
public class AWT_Test1 extends Frame {
// Constructor.
public AWT_Test1(String title) {
super(title);
Label lbl = new Label("Hello from Java", Label.CENTER);
lbl.setFont(new Font("Helvetica", Font.PLAIN, 16));
add("Center", lbl);
}
public static void main(String args[]) {
AWT_Test1 Test = new AWT_Test1("A Java Window");
Test.resize(350,250);
Test.show();
}
}