Guest User

Untitled

a guest
Jun 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class MyMenuItem < javax.swing.JMenuItem
  2. attr_accessor :commandstring
  3.  
  4. def initialize(str)
  5. super(str)
  6. @commandstring = str
  7. add_mouse_listener do |event|
  8. puts "the mouse did something!"
  9. puts event
  10. end
  11. end
  12. end
Add Comment
Please, Sign In to add comment