/*
* Copyright 2010 Busa Blade Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* This work is a derivative work based on copyrighted library javampd by Bill Findeisen
* The underlying mechanisms for talking to the MPD server is wholly derived from
* the javampd library and has been imported and modified to work better in an Android
* environment.
*
* @author Bill Findeisen
* @author busa[dot]blade[at]gmail[dot]com
* @version 1.0
*/
package com.client.daemon.player.music.androidmpd.listeners;
import com.client.daemon.player.music.androidmpd.events.PlayerStateChangeEvent;
public interface PlayerStateChangeListener {
/**
* Invoked when a player change event occurs.
* @param event the event fired
*/
void onPlayerStopped(PlayerStateChangeEvent event);
void onPlayerPlaying(PlayerStateChangeEvent event);
void onPlayerPaused(PlayerStateChangeEvent event);
}
|