Advertisement
Guest User

Untitled

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