Path: blob/main/src/lwjgl/java/javazoom/jl/decoder/Control.java
8650 views
/*1* 11/19/04 1.0 moved to LGPL.2*-----------------------------------------------------------------------3* This program is free software; you can redistribute it and/or modify4* it under the terms of the GNU Library General Public License as published5* by the Free Software Foundation; either version 2 of the License, or6* (at your option) any later version.7*8* This program is distributed in the hope that it will be useful,9* but WITHOUT ANY WARRANTY; without even the implied warranty of10* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11* GNU Library General Public License for more details.12*13* You should have received a copy of the GNU Library General Public14* License along with this program; if not, write to the Free Software15* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.16*----------------------------------------------------------------------17*/1819package javazoom.jl.decoder;2021/**22* Work in progress.23*/2425public interface Control26{2728/**29* Starts playback of the media presented by this control.30*/31public void start();3233/**34* Stops playback of the media presented by this control.35*/36public void stop();3738public boolean isPlaying();3940public void pause();414243public boolean isRandomAccess();4445/**46* Retrieves the current position.47*/48public double getPosition();4950/**51*52*/53public void setPosition(double d);545556}575859