Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. /**
  2. *
  3. * @author João Paulo
  4. */
  5. import javax.swing.JFrame;
  6. public class LabelTest {
  7. public static void main(String[] args){
  8.  
  9. LabelFrame a = new LabelFrame();
  10. a.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  11. a.setSize(1000,500);
  12. a.setVisible(true);
  13.  
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement