12 lines
228 B
Java
12 lines
228 B
Java
|
import java.awt.*;
|
||
|
import javax.swing.*;
|
||
|
|
||
|
public class Fenetre extends JFrame {
|
||
|
public Fenetre() {
|
||
|
super("");
|
||
|
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||
|
this.setSize(500,500);
|
||
|
this.setLocation(500,250);
|
||
|
|
||
|
}
|
||
|
}
|