This is a convenience class that allows the creation of an XMLText nested into an XMLElement. The name and
attributes belong to the XMLElement,
the text to the XMLText.
Public Class Methods
new(text, name, attributes = {})click to toggle source
# File lib/taskjuggler/XMLElement.rb, line 189definitialize(text, name, attributes = {})
super(name, attributes)
self<<XMLText.new(text)
end