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

📄 aboutaction.java

📁 自己用Java写的一个mp3文件改名的小工具
💻 JAVA
字号:
import javax.swing.Action;

/**
 *  Represents the Import Action.
 *
 * @author     kilo
 * @created    2003年12月22日
 */
public final class AboutAction
		 extends mp3AbstractAction {

	/**
	 *  Description of the Field
	 */
	private final static String ACTION_COMMAND_KEY_ABOUT = "about-command";
	/**
	 *  Description of the Field
	 */
	private final static String NAME_ABOUT = "关于";
	/**
	 *  Description of the Field
	 */
	private final static String SMALL_ICON_ABOUT = "about.png";
	/**
	 *  Description of the Field
	 */
	private final static String SHORT_DESCRIPTION_ABOUT = "关于本软件";
	/**
	 *  Description of the Field
	 */
	private final static String LONG_DESCRIPTION_ABOUT = "关于本软件";
	/**
	 *  Description of the Field
	 */
	private final static int MNEMONIC_KEY_ABOUT = 'A';


	/**
	 *  Constructor for the AboutAction object
	 */
	public AboutAction() {
		putValue( Action.NAME, NAME_ABOUT );
		putValue( Action.SMALL_ICON, getIcon( SMALL_ICON_ABOUT ) );
		putValue( Action.SHORT_DESCRIPTION, SHORT_DESCRIPTION_ABOUT );
		putValue( Action.LONG_DESCRIPTION, LONG_DESCRIPTION_ABOUT );
		putValue( Action.MNEMONIC_KEY, new Integer( MNEMONIC_KEY_ABOUT ) );
		putValue( Action.ACTION_COMMAND_KEY, ACTION_COMMAND_KEY_ABOUT );
	}

}

⌨️ 快捷键说明

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