import java.awt.*;
public class AwtTextfieldTestProg {
public static void main (String [] args) {
Frame f = new Frame ();
f.setSize (300, 400);
f.setLocation (100, 100);
f.setVisible (true);
TextField t = new TextField ("Hallo Welt");
f.add (t);
}
}