Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
79
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. public class CheckBoxTest {
  4. public static void main(String[] args) {
  5. CheckBoxFrame checkboxFrame = new CheckBoxFrame();
  6. checkboxFrame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE);
  7. checkboxFrame.setSize( 275,100 );
  8. checkboxFrame.setVisible( true );
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement