Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. package radionbuttontest;
  2.  
  3.  
  4. import javax.swing.JFrame;
  5.  
  6. public class RadionButtonTest {
  7.  
  8. /**
  9. * @param args the command line arguments
  10. */
  11. public static void main(String[] args) {
  12. RadioButtonFrame radioButtonFrame = new RadioButtonFrame();
  13. radioButtonFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  14. radioButtonFrame.setSize(300,100);
  15. radioButtonFrame.setVisible(true);
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement