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

📄 operateaction.java

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

/**
 *  Description of the Class
 *
 * @author     kilo
 * @created    2003年12月22日
 */
public final class OperateAction
	extends mp3AbstractAction {

	/**
	 *  Description of the Field
	 */

	private static final String ACTION_COMMAND_KEY_ABOUT = "operate-command";
	/**
	 *  Description of the Field
	 */
	private static final String NAME_ABOUT = "开始改名操作";
	/**
	 *  Description of the Field
	 */
	private static final String SMALL_ICON_ABOUT = "operate.png";
	/**
	 *  Description of the Field
	 */
	private static final String SHORT_DESCRIPTION_ABOUT = "执行选定的操作";
	/**
	 *  Description of the Field
	 */
	private static final String LONG_DESCRIPTION_ABOUT = "执行选定的操作";
	/**
	 *  Description of the Field
	 */	
	private final static int MNEMONIC_KEY_ABOUT = 'B';


	/**
	 *  Constructor for the OperateAction object
	 */
	public OperateAction() {
		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 + -