Class: Kamelopard::SoundCue
- Inherits:
-
TourPrimitive
- Object
- Object
- TourPrimitive
- Kamelopard::SoundCue
- Defined in:
- lib/kamelopard/classes.rb
Overview
Corresponds to a KML gx:SoundCue object
Instance Attribute Summary collapse
-
#delayedStart ⇒ Object
Returns the value of attribute delayedStart.
-
#href ⇒ Object
Returns the value of attribute href.
Attributes inherited from TourPrimitive
Attributes inherited from Object
#comment, #kml_id, #master_only
Instance Method Summary collapse
-
#initialize(href, delayedStart = nil) ⇒ SoundCue
constructor
A new instance of SoundCue.
- #to_kml(elem = nil) ⇒ Object
Methods inherited from Object
#_alternate_to_kml, #change, #master_only?
Constructor Details
#initialize(href, delayedStart = nil) ⇒ SoundCue
Returns a new instance of SoundCue.
1789 1790 1791 1792 1793 |
# File 'lib/kamelopard/classes.rb', line 1789 def initialize(href, delayedStart = nil) super() @href = href @delayedStart = delayedStart end |
Instance Attribute Details
#delayedStart ⇒ Object
Returns the value of attribute delayedStart.
1788 1789 1790 |
# File 'lib/kamelopard/classes.rb', line 1788 def delayedStart @delayedStart end |
#href ⇒ Object
Returns the value of attribute href.
1788 1789 1790 |
# File 'lib/kamelopard/classes.rb', line 1788 def href @href end |
Instance Method Details
#to_kml(elem = nil) ⇒ Object
1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 |
# File 'lib/kamelopard/classes.rb', line 1795 def to_kml(elem = nil) k = XML::Node.new 'gx:SoundCue' super k d = XML::Node.new 'href' d << @href.to_s k << d if not @delayedStart.nil? then d = XML::Node.new 'gx:delayedStart' d << @delayedStart.to_s k << d end elem << k unless elem.nil? k end |