⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 control.java

📁 一个详细的javaLayer的源码
💻 JAVA
字号:
package javazoom.jl.decoder;

/**
 * Work in progress.
 */

public interface Control
{
	
	/**
	 * Starts playback of the media presented by this control.
	 */
	public void start();
	
	/**
	 * Stops playback of the media presented by this control.
	 */
	public void stop();
	
	public boolean isPlaying();
	
	public void pause();
		
	
	public boolean isRandomAccess();
	
	/**
	 * Retrieves the current position.
	 */
	public double	getPosition();
	
	/**
	 * 
	 */
	public void		setPosition(double d);
	
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -