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