Class RSS::Rss::Channel::TextInput
In: lib/rss/0.9.rb
Parent: Element

Methods

maker_target   new  

Included Modules

RSS09

Public Class methods

[Source]

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

Private Instance methods

[Source]

     # File lib/rss/0.9.rb, line 394
394:         def maker_target(maker)
395:           maker.textinput
396:         end

[Validate]