Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import javax.swing.JFrame;
  2.  
  3. public class CheckBox {
  4.  
  5. public static void main(String[] args)
  6. {
  7. JCheckBoxFrame checkBoxFrame = new JCheckBoxFrame();
  8. checkBoxFrame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
  9. checkBoxFrame.setSize( 275, 100 );
  10. checkBoxFrame.setVisible( true );
  11.  
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement