Class: Id3Taginator::Frames::Lyrics::Entities::UnsyncLyrics

Inherits:
Object
  • Object
show all
Includes:
Extensions::Comparable
Defined in:
lib/id3taginator/frames/lyrics/entities/unsync_lyrics.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Extensions::Comparable

#==, #compare

Constructor Details

#initialize(language, descriptor, lyrics) ⇒ UnsyncLyrics

constructor



17
18
19
20
21
# File 'lib/id3taginator/frames/lyrics/entities/unsync_lyrics.rb', line 17

def initialize(language, descriptor, lyrics)
  @language = language
  @descriptor = descriptor
  @lyrics = lyrics
end

Instance Attribute Details

#descriptorObject

Returns the value of attribute descriptor.



10
11
12
# File 'lib/id3taginator/frames/lyrics/entities/unsync_lyrics.rb', line 10

def descriptor
  @descriptor
end

#languageObject

Returns the value of attribute language.



10
11
12
# File 'lib/id3taginator/frames/lyrics/entities/unsync_lyrics.rb', line 10

def language
  @language
end

#lyricsObject

Returns the value of attribute lyrics.



10
11
12
# File 'lib/id3taginator/frames/lyrics/entities/unsync_lyrics.rb', line 10

def lyrics
  @lyrics
end