/** * This work is licensed under the Creative Commons Attribution-NonCommercial- * NoDerivs 3.0 Unported License. To view a copy of this license, visit * http://creativecommons.org/licenses/by-nc-nd/3.0/ or send a letter to * Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, * 94041, USA. * * Use of this work is permitted only in accordance with license rights granted. * Materials provided "AS IS"; no representations or warranties provided. * * Copyright � 2012 Marcus Parkkinen, Aki K�kel�, Fredrik �hs. **/ package edu.chalmers.dat255.audiobookplayer.constants; /** * Contains the possible playback statuses. * * @author Aki K�kel� * @version 0.1 * */ public final class PlaybackStatus { private PlaybackStatus() { } // to defeat instantiation public static final int PLAYING = 0; public static final int PAUSED = 1; public static final int STOPPED = 2; }