class RSS::Rss::Channel::Cloud

公共类方法

new(*args) 点击切换源代码
调用父类方法
# File rss-0.3.1/lib/rss/0.9.rb, line 263
def initialize(*args)
  if Utils.element_initialize_arguments?(args)
    super
  else
    super()
    self.domain = args[0]
    self.port = args[1]
    self.path = args[2]
    self.registerProcedure = args[3]
    self.protocol = args[4]
  end
end