track.py

Go to the documentation of this file.
00001 class Track:
00002         """Stores information about a track, and whether or not it's highlighted."""
00003         def __init__(self,fname,title,artist,album,length):
00004                 self.highlighthighlight=False
00005                 self._fname_fname=fname
00006                 self._album_album=album
00007                 self._artist_artist=artist
00008                 self._title_title=title
00009                 self._length_length=length
00010         def Filename(self):
00011                 return self._fname_fname
00012         def Title(self):
00013                 return self._title_title
00014         def Artist(self):
00015                 return self._artist_artist
00016         def Album(self):
00017                 return self._album_album
00018         def Length(self):
00019                 return self._length_length

Generated on Mon Aug 6 21:24:20 2007 for plai by  doxygen 1.5.1