Class: REXML::Element
- Inherits:
-
Object
- Object
- REXML::Element
- Defined in:
- lib/fgmapping/main-dlg-impl.rb
Overview
Thread.abort_on_exception = true GC.disable
Instance Method Summary collapse
Instance Method Details
#add_text_element(nodename, text) ⇒ Object
92 93 94 95 96 |
# File 'lib/fgmapping/main-dlg-impl.rb', line 92 def add_text_element(nodename, text) e = REXML::Element.new(nodename) e.add_text(text) self.add_element(e) end |