Package elisa :: Package plugins :: Package daap :: Module models :: Class DaapArtistModel

Class DaapArtistModel

source code


ArtistModel that keeps track of the list of AlbumModel and has a single image

Instance Methods
 
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code

Inherited from extern.log.log.Loggable: debug, doLog, error, info, log, logFunction, logObjectName, warning, warningFailure

Inherited from object: __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __sizeof__, __str__, __subclasshook__

    Inherited from core.utils.bindable.Bindable
 
__delattr__(self, attribute)
x.__delattr__('name') <==> del x.name
source code
 
__setattr__(self, attribute, new_value)
x.__setattr__('name', value) <==> x.name = value
source code
 
bind(self, attribute, destination_object, destination_attribute)
Bind a local attribute to destination_attribute of destination_object.
source code
 
unbind(self, attribute, destination_object, destination_attribute)
Remove the binding of attribute to destination_attribute of destination_object.
source code
 
unbind_object(self, destination_object)
Remove all the bindings you have for a certain destination_object.
source code
Class Variables

Inherited from extern.log.log.Loggable: logCategory

Instance Variables
    Inherited from base.models.audio.ArtistModel
list of {elisa.plugins.base.models.image.ImageModel} images
visual representations of the artist
unicode musicbrainz_id
a unique id to request more information from musicbrainz.org
unicode name
name of the artist
    Inherited from core.components.model.Model
elisa.core.action.ContextualAction default_action
Default action for this item instance.
list of elisa.core.action.ContextualAction extra_actions
Extra actions for this item instance.
Properties

Inherited from object: __class__

Method Details

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)