Advertisement
mbah_bejo

mainNotepad

Dec 23rd, 2020
984
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.61 KB | None | 0 0
  1. /**
  2.  *  Jadi ini adalah main class dari Notepad mantap keren bisa bikin jago ngoding anjay
  3.  *  disini juga mengatur frame yang dipakai
  4.  *
  5.  *  Author thomasdwi.a
  6.  *  Version 20201224
  7. */
  8. import javax.swing.JFrame;
  9.  
  10.  
  11. public class main {
  12.     public static void main(String [] args){
  13.         JFrame frame = new grid();
  14.         frame.setTitle("Notepad mantap keren bisa bikin jago ngoding anjay");
  15.         frame.setVisible(true);
  16.         frame.setSize(1280, 720);
  17.         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  18.         frame.setResizable(true);
  19.         frame.setLocationRelativeTo(null);
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement