Class: Musa::MusicXML::Builder::Internal::Creator Private
- Defined in:
- lib/musa-dsl/musicxml/builder/typed-text.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Creator metadata for MusicXML identification section.
Represents a <creator> element specifying who created various aspects
of the work (composer, lyricist, arranger, etc.).
Instance Method Summary collapse
-
#initialize(type, name) ⇒ Creator
constructor
private
Creates a creator entry.
Constructor Details
#initialize(type, name) ⇒ Creator
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.
Creates a creator entry.
71 72 73 74 |
# File 'lib/musa-dsl/musicxml/builder/typed-text.rb', line 71 def initialize(type, name) @tag = 'creator' super type, name end |