Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. con = new JPanel();
  2. JButton bt = new JButton (" Insert ");
  3. con.add (bt);
  4. frame.add (con)
  5. frame.setVisible(true);
  6.  
  7. bt.addActionListener(
  8. new ActionListener() {
  9. public void actionPerformed(ActionEvent e) {
  10. radio = rb.getSelection().getActionCommand();
  11. speed = "";
  12. }
  13. }
  14. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement