Advertisement
Guest User

Untitled

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