Module: Musa::MusicXML::Builder::Internal::Helper::NotImplemented Private
- Included in:
- AccordionRegistration, Arrow, Bend, Coda, Damp, DampAll, EyeGlasses, Fingering, Musa::MusicXML::Builder::Internal::HarpPedals, Musa::MusicXML::Builder::Internal::Hole, Image, Notehead, OtherDirection, Percussion, PrincipalVoice, Rehearsal, Scordatura, Segno, StringMute
- Defined in:
- lib/musa-dsl/musicxml/builder/helper.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Mixin for classes not yet implemented.
Used as a placeholder for MusicXML elements that are planned but not
yet implemented. Raises NotImplementedError when attempting to use.
Instance Method Summary collapse
-
#initialize(**_args) ⇒ Object
private
Placeholder initializer accepting any parameters.
-
#to_xml(io = nil, indent: nil) ⇒ Object
private
Raises error indicating the class is not implemented.
Instance Method Details
#initialize(**_args) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Placeholder initializer accepting any parameters.
109 |
# File 'lib/musa-dsl/musicxml/builder/helper.rb', line 109 def initialize(**_args); end |
#to_xml(io = nil, indent: nil) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Raises error indicating the class is not implemented.
116 117 118 |
# File 'lib/musa-dsl/musicxml/builder/helper.rb', line 116 def to_xml(io = nil, indent: nil) raise NotImplementedError, "#{self.class} not yet implemented. Ask Javier do his work!" end |