Class: Musa::MusicXML::Builder::Internal::Dashes
- Inherits:
-
DirectionType
- Object
- DirectionType
- Musa::MusicXML::Builder::Internal::Dashes
- Defined in:
- lib/musa-dsl/musicxml/builder/direction.rb
Instance Method Summary collapse
- #_direction_type_to_xml(io, indent:, tabs:) ⇒ Object
-
#initialize(type, &block) ⇒ Dashes
constructor
start / stop / continue.
Methods included from Extension::AttributeBuilder
#attr_complex_adder_to_array, #attr_complex_adder_to_custom, #attr_complex_builder, #attr_simple_builder, #attr_tuple_adder_to_array, #attr_tuple_adder_to_hash, #attr_tuple_builder
Methods included from Helper::ToXML
Methods included from Extension::With
Constructor Details
#initialize(type, &block) ⇒ Dashes
start / stop / continue
210 211 212 213 214 215 216 |
# File 'lib/musa-dsl/musicxml/builder/direction.rb', line 210 def initialize(type, # start / stop / continue &block) @type = type super end |
Instance Method Details
#_direction_type_to_xml(io, indent:, tabs:) ⇒ Object
220 221 222 |
# File 'lib/musa-dsl/musicxml/builder/direction.rb', line 220 def _direction_type_to_xml(io, indent:, tabs:) io.puts "#{tabs}<dashes type=\"#{@type}\" />" end |