class RSS::RDF::Channel::Items
常量
- Seq
公共类方法
new(*args) 点击切换源代码
调用父类方法
# File rss-0.3.1/lib/rss/1.0.rb, line 318 def initialize(*args) if Utils.element_initialize_arguments?(args) super else super() self.Seq = args[0] end self.Seq ||= Seq.new end
required_uri() 点击切换源代码
# File rss-0.3.1/lib/rss/1.0.rb, line 309 def required_uri ::RSS::URI end
公共实例方法
resources() 点击切换源代码
# File rss-0.3.1/lib/rss/1.0.rb, line 328 def resources if @Seq @Seq.lis.collect do |li| li.resource end else [] end end