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 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

Private Instance methods

[Source]

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

[Validate]