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

📄 icommandids.java

📁 eclipse rcp 项目实例
💻 JAVA
字号:
package com.niis.myprice.action;

/**
 * Interface defining the application's command IDs.
 * Key bindings can be defined for specific commands.
 * To associate an action with a command, use IAction.setActionDefinitionId(commandId).
 *
 * @see org.eclipse.jface.action.IAction#setActionDefinitionId(String)
 */
public interface ICommandIds {
	
	public static final String CMD_EXIT = "com.niis.myprice.exit";
    public static final String CMD_MAIL = "com.niis.myprice.mail";
    
    public static final String CMD_OPEN = "com.niis.myprice.openWare";
    public static final String CMD_SAVE = "com.niis.myprice.saveWare";
    public static final String CMD_OPEN_MESSAGE = "com.niis.myprice.openKind";
    public static final int INSERT = 0;
    public static final int MODIFY = 1;
    public static final int DELETE = 2;
    public static final int VIEW = 3;
    
    
}

⌨️ 快捷键说明

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