*/
- (NSArray *)playlists;
+/*!
+ * @method artists
+ */
+- (NSArray *)artists;
+
+/*!
+ * @method albums
+ */
+- (NSArray *)albums;
+
/*!
* @method numberOfSongsInPlaylistAtIndex:
*/
*/
- (ITMTRemotePlayerSource)currentSource;
+/*!
+ * @method currentSourceIndex
+ */
+- (int)currentSourceIndex;
+
/*!
* @method currentPlaylistClass
*/
*/
- (NSString *)songTitleAtIndex:(int)index;
+/*!
+ * @method songEnabledAtIndex:
+ */
+- (BOOL)songEnabledAtIndex:(int)index;
+
/*!
* @method currentAlbumTrackCount:
*/
*/
- (NSString *)currentSongArtist;
+/*!
+ * @method currentSongComposer
+ */
+- (NSString *)currentSongComposer;
+
/*!
* @method currentSongAlbum
*/
*/
- (NSString *)currentSongLength;
+/*!
+ * @method currentSongPlayed
+ */
+- (int)currentSongPlayed;
+
+/*!
+ * @method currentSongDuration
+ */
+- (int)currentSongDuration;
+
/*!
* @method currentSongRemaining
*/
*/
- (NSImage *)currentSongAlbumArt;
+/*!
+ * @method currentSongPlayCount
+ */
+- (int)currentSongPlayCount;
+
/*!
* @method currentSongRating
*/
*/
- (BOOL)setCurrentSongRating:(float)rating;
+/*!
+ * @method currentSongShuffable
+ */
+- (BOOL)currentSongShufflable;
+
+/*!
+ * @method setCurrentSongShuffable:
+ */
+- (BOOL)setCurrentSongShufflable:(BOOL)shufflable;
+
+/*!
+ * @method equalizerEnabled
+ */
+- (BOOL)equalizerEnabled;
+
+/*!
+ * @method setEqualizerEnabled:
+ */
+- (BOOL)setEqualizerEnabled:(BOOL)enabled;
+
/*!
* @method eqPresets
*/
*/
- (BOOL)switchToPlaylistAtIndex:(int)index;
+/*!
+ * @method switchToPlaylistAtIndex:
+ */
+- (BOOL)switchToPlaylistAtIndex:(int)index ofSourceAtIndex:(int)index2;
+
/*!
* @method switchToSongAtIndex:
*/
*/
- (BOOL)switchToEQAtIndex:(int)index;
+/*!
+ * @method makePlaylistWithTerm:ofType:
+ */
+- (BOOL)makePlaylistWithTerm:(NSString *)term ofType:(int)type;
+
@end
/*!