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