Class: RRBAdapters

Inherits:
Object
  • Object
show all
Defined in:
lib/jrubyfx-fxmlloader.rb

Instance Method Summary collapse

Instance Method Details

#contains(names, key) ⇒ Object



719
720
721
# File 'lib/jrubyfx-fxmlloader.rb', line 719

def contains(names, key)
  RubyWrapperBeanAdapter.for(names).has_key? key
end

#get(names, key) ⇒ Object



713
714
715
# File 'lib/jrubyfx-fxmlloader.rb', line 713

def get(names, key)
  RubyWrapperBeanAdapter.for(names)[key]
end

#set(names, key, value) ⇒ Object



716
717
718
# File 'lib/jrubyfx-fxmlloader.rb', line 716

def set(names, key, value)
  RubyWrapperBeanAdapter.for(names)[key] = value
end