Advertisement
Guest User

Untitled

a guest
May 16th, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. public class MyButton extends JButton implements ActionListener {
  2.  
  3.    
  4.     public MyButton(String s){
  5.         super(s);
  6.         addActionListener(this);
  7.     }
  8.    
  9.    
  10.     @Override
  11.     public void actionPerformed(ActionEvent e) {
  12.         System.out.println("You pressed the button!");
  13.     }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement