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

📄 beepcommand.java

📁 纯java操作系统jnode,安装简单和操作简单的个人使用的Java操作系统
💻 JAVA
字号:

package org.jnode.driver.sound.command;
import  org.jnode.driver.sound.speaker.SpeakerUtils;
import  org.jnode.shell.help.Help;
import  org.jnode.shell.help.Syntax;

/** Plays a system beep.
 *  @author Matt Paine
 */
public class BeepCommand
{

	public static final Help.Info HELP_INFO = new Help.Info("beep",	//  The command name
		new Syntax[]												//	The first syntax option
		{
			new Syntax("Plays a system beep")								//	No parameters
		});

	/** The main method
	 *  @param args The arguments for this command. NOTE: This command does not take any arguments.
	 **/
	public static void main(String[] args)
	{

		SpeakerUtils.beep();
	}
}

⌨️ 快捷键说明

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