Class: TagLib::Tag
Abstract
- Inherits:
-
Object
show all
- Defined in:
- docs/taglib/base.rb
Overview
This is a unified view which provides basic tag information, which
is common in all tag formats. See subclasses for functionality that
goes beyond this interface.
Instance Attribute Summary collapse
Instance Method Summary
collapse
Instance Attribute Details
#album ⇒ String?
212
213
214
|
# File 'docs/taglib/base.rb', line 212
def album
@album
end
|
#artist ⇒ String?
216
217
218
|
# File 'docs/taglib/base.rb', line 216
def artist
@artist
end
|
220
221
222
|
# File 'docs/taglib/base.rb', line 220
def
@comment
end
|
#genre ⇒ String?
224
225
226
|
# File 'docs/taglib/base.rb', line 224
def genre
@genre
end
|
#title ⇒ String?
228
229
230
|
# File 'docs/taglib/base.rb', line 228
def title
@title
end
|
#track ⇒ Integer, 0
232
233
234
|
# File 'docs/taglib/base.rb', line 232
def track
@track
end
|
#year ⇒ Integer, 0
236
237
238
|
# File 'docs/taglib/base.rb', line 236
def year
@year
end
|
Instance Method Details
#empty? ⇒ Boolean
239
|
# File 'docs/taglib/base.rb', line 239
def empty?; end
|