import javax.swing.*;
public class TextFrame {
public static void main(String[] args) {
JFrame f1 = new JFrame();
f1.setTitle("window 1");
f1.setSize(200,150);
f1.setLocation(200,100);
f1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f1.setVisible(true);
}
}