Class: RRBAdapters

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

Instance Method Summary collapse

Instance Method Details

#contains(names, key) ⇒ Object



795
796
797
# File 'lib/jrubyfx-fxmlloader.rb', line 795

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

#get(names, key) ⇒ Object



789
790
791
# File 'lib/jrubyfx-fxmlloader.rb', line 789

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

#set(names, key, value) ⇒ Object



792
793
794
# File 'lib/jrubyfx-fxmlloader.rb', line 792

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