Class | RSS::Rss::Channel::TextInput |
In: |
lib/rss/0.9.rb
|
Parent: | Element |
# File lib/rss/0.9.rb, line 385 385: def initialize(*args) 386: if Utils.element_initialize_arguments?(args) 387: super 388: else 389: super() 390: self.title = args[0] 391: self.description = args[1] 392: self.name = args[2] 393: self.link = args[3] 394: end 395: end