| Class | RSS::Rss::Channel::Cloud |
| In: |
lib/rss/0.9.rb
|
| Parent: | Element |
# File lib/rss/0.9.rb, line 225
225: def initialize(*args)
226: if Utils.element_initialize_arguments?(args)
227: super
228: else
229: super()
230: self.domain = args[0]
231: self.port = args[1]
232: self.path = args[2]
233: self.registerProcedure = args[3]
234: self.protocol = args[4]
235: end
236: end