Guest User

Untitled

a guest
Nov 18th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public void addListener() {
  2. String s = "Hello World";
  3. this.addActionListener(new ActionListener() {
  4. public void actionPerformed(ActionEvent event) {
  5. System.out.println(s);
  6. }
  7. });
  8. }
Add Comment
Please, Sign In to add comment