Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public class GuiMain extends JFrame {
  2.  
  3. public static void main() {
  4. GuiMain guiMain = new GuiMain();
  5. }
  6.  
  7. public GuiMain() {
  8. this.setTitle("Ma première fenêtre Java");
  9. this.setSize(400, 100);
  10. this.setLocationRelativeTo(null);
  11. this.setVisible(true);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement