| Class | TaskJuggler::XMLText |
| In: |
lib/taskjuggler/XMLElement.rb
|
| Parent: | XMLElement |
This is a specialized XMLElement to represent a simple text.
# File lib/taskjuggler/XMLElement.rb, line 160 def initialize(text) super(nil, {}) raise 'Text may not be nil' unless text @text = text end