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?
209
210
211
|
# File 'docs/taglib/base.rb', line 209
def album
@album
end
|
#artist ⇒ String?
213
214
215
|
# File 'docs/taglib/base.rb', line 213
def artist
@artist
end
|
217
218
219
|
# File 'docs/taglib/base.rb', line 217
def
@comment
end
|
#genre ⇒ String?
221
222
223
|
# File 'docs/taglib/base.rb', line 221
def genre
@genre
end
|
#title ⇒ String?
225
226
227
|
# File 'docs/taglib/base.rb', line 225
def title
@title
end
|
#track ⇒ Integer, 0
229
230
231
|
# File 'docs/taglib/base.rb', line 229
def track
@track
end
|
#year ⇒ Integer, 0
233
234
235
|
# File 'docs/taglib/base.rb', line 233
def year
@year
end
|
Instance Method Details
#empty? ⇒ Boolean
236
|
# File 'docs/taglib/base.rb', line 236
def empty?; end
|