class RSS::Maker::RSS10::Textinput
公共实例方法
have_required_values?() 点击切换源码
调用父类方法
# File rss-0.3.1/lib/rss/maker/1.0.rb, line 422 def have_required_values? super and @maker.channel.have_required_values? end
to_feed(rss) 点击切换源码
# File rss-0.3.1/lib/rss/maker/1.0.rb, line 410 def to_feed(rss) if @link textinput = RDF::Textinput.new(@link) set = setup_values(textinput) if set rss.textinput = textinput set_parent(textinput, rss) setup_other_elements(rss, textinput) end end end
私有实例方法
required_variable_names() 点击切换源码
# File rss-0.3.1/lib/rss/maker/1.0.rb, line 427 def required_variable_names %w(title description name link) end