Uses of Class
com.breeweb.slimconnect.commands.AbstractCommand

Packages that use AbstractCommand
com.breeweb.slimconnect.commands   
com.breeweb.slimconnect.iface.delegate   
 

Uses of AbstractCommand in com.breeweb.slimconnect.commands
 

Subclasses of AbstractCommand in com.breeweb.slimconnect.commands
 class ControlCommand
           
 class DisplayCommand
           
 class PlayerCommand
           
 class SongCommand
           
 

Methods in com.breeweb.slimconnect.commands that return AbstractCommand
static AbstractCommand SongCommand.getCurrentGenre()
          Returns a command to get the current genre.
static AbstractCommand SongCommand.getCurrentArtist()
          Returns a command to get the current artist
static AbstractCommand SongCommand.getCurrentAlbum()
          Returns a command to get the current album
static AbstractCommand SongCommand.getCurrentTitle()
          Reurns a command to get the current title
static AbstractCommand SongCommand.getCurrentDuration()
          Returns a command to get the current duration
static AbstractCommand SongCommand.getCurrentPath()
          Returns a command to get the current path
static AbstractCommand SongCommand.getSongPath(int i)
          Returns a command to get the path for a given song index.
static AbstractCommand SongCommand.getSongDuration(int i)
          Returns a command to get the duration for a given song index.
static AbstractCommand SongCommand.getSongTitle(int i)
          Returns a command to get the title for a given song index.
static AbstractCommand SongCommand.getSongAlbum(int i)
          Returns a command to get the album for a given song index.
static AbstractCommand SongCommand.getSongArtist(int i)
          Returns a command to get the artist for a given song index.
static AbstractCommand SongCommand.getSongGenre(int i)
          Returns a command to get the genre for a given song index.
static AbstractCommand PlayerCommand.getCurrentTrackInPlaylist()
          Returns the command to get the current track in the playlist.
static AbstractCommand PlayerCommand.getNrOfTracksInCurrentList()
          Returns the command to get the number of tracks in the current playlist.
static AbstractCommand DisplayCommand.displayNow()
          Returns the command to get any text currently on the display, including anymations.
static AbstractCommand ControlCommand.play()
          Returns the play command.
static AbstractCommand ControlCommand.togglePause()
          Returns the command to toggle the puase mode.
static AbstractCommand ControlCommand.setPause(boolean on)
          Returns the command to (un)set the pause mode.
static AbstractCommand ControlCommand.stop()
          Returns the stop command.
static AbstractCommand ControlCommand.getMode()
          Returns the command to get the current mopde.
static AbstractCommand ControlCommand.getPower()
          Returns the command to get the current power mode.
static AbstractCommand ControlCommand.setPower(boolean on)
          returns the command to power on or off the player.
static AbstractCommand ControlCommand.getShuffle()
          Returns the command to get the shuffle mode.
static AbstractCommand ControlCommand.setShuffle(boolean on)
          Returns the command to set/unset shuffle mode.
static AbstractCommand ControlCommand.getRepeat()
          Returns the get repeat command.
static AbstractCommand ControlCommand.setRepeat(int mode)
          Returns the command to set repeat mode.
static AbstractCommand ControlCommand.getSleep()
          Returns the command to get the amount of time untill sleep mode
static AbstractCommand ControlCommand.setSleep(double time)
          Returns the set sleep command
static AbstractCommand ControlCommand.playlistPlay(java.lang.String url)
          Returns the playlist play command.
static AbstractCommand ControlCommand.playlistAdd(java.lang.String url)
          Returns the playlist add command.
static AbstractCommand ControlCommand.playlistInsert(java.lang.String url)
          Returns the playlist insert command.
static AbstractCommand ControlCommand.playlistMove(int indexFrom, int indexTo)
          Returns the playlist move command.
static AbstractCommand ControlCommand.playlistDelete(int index)
          returns the command to delete a index from the playlist
static AbstractCommand ControlCommand.playlistResume(java.lang.String name)
          Returns the command for playlist resume.
static AbstractCommand ControlCommand.playlistSave(java.lang.String name)
          Returns the command for playlist save
static AbstractCommand ControlCommand.playlistLoadAlbum(java.lang.String genre, java.lang.String artist, java.lang.String album)
          Returns the command for playlist load album
static AbstractCommand ControlCommand.playlistAddAlbum(java.lang.String genre, java.lang.String artist, java.lang.String album)
          Returns the command for playlist add album
static AbstractCommand ControlCommand.playlistClear()
          Returns the command for playlist clear.
static AbstractCommand ControlCommand.playlistGetIndex()
          Returns the get index command.
static AbstractCommand ControlCommand.playlistSetIndex(int index)
          Returns the command for setIndex.
static AbstractCommand ControlCommand.playlistJump(java.lang.String amount)
          Returns a AbstractCommand which represents the jump command.
static AbstractCommand ControlCommand.getInternalStatus()
          Returns the internal status.
 

Uses of AbstractCommand in com.breeweb.slimconnect.iface.delegate
 

Methods in com.breeweb.slimconnect.iface.delegate with parameters of type AbstractCommand
 ReturnData Slimp3Connection.sendCommand(AbstractCommand aCommand)
          Sends an command to the Slimp3Server and returns the response as ReturnData object.