Guest User

Untitled

a guest
Sep 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. require 'java'
  2.  
  3. java_import 'ActionListener'
  4. java_import 'Component'
  5.  
  6. c = Component.new
  7.  
  8. l = lambda{ |a, f, l| puts a, f, l }
  9. c.add_action_listener(l, 'one', 'two', 'three')
  10.  
  11. c.trigger_action('Hello')
Add Comment
Please, Sign In to add comment