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

📄 ijadconstants.java

📁 eclipseme的最新版本的source,欢迎j2me程序员使用
💻 JAVA
字号:
/**
 * Copyright (c) 2003-2005 Craig Setera
 * All Rights Reserved.
 * Licensed under the Eclipse Public License - v 1.0
 * For more information see http://www.eclipse.org/legal/epl-v10.html
 */
package eclipseme.core.model;

/**
 * Constants related to editting JAD files.
 * <p>
 * <b>Note:</b> This class/interface is part of an interim API that is still under development and expected to
 * change before reaching stability. It is being made available at this early stage to solicit feedback
 * from pioneering adopters on the understanding that any code that uses this API will almost 
 * certainly be broken as the API evolves.
 * </p>
 * Copyright (c) 2003-2005 Craig Setera<br>
 * All Rights Reserved.<br>
 * Licensed under the Eclipse Public License - v 1.0<p/>
 * <br>
 * $Revision: 1.6 $
 * <br>
 * $Date: 2005/07/07 02:37:17 $
 * <br>
 * @author Craig Setera
 */
public interface IJADConstants {
	// Information garnered from WTK tool...
	//	Required:
	public static final String JAD_MIDLET_JAR_SIZE = 
		"MIDlet-Jar-Size";
	public static final String JAD_MIDLET_JAR_URL = 
		"MIDlet-Jar-URL";
	public static final String JAD_MIDLET_NAME = 
		"MIDlet-Name";
	public static final String JAD_MIDLET_VENDOR = 
		"MIDlet-Vendor";
	public static final String JAD_MIDLET_VERSION = 
		"MIDlet-Version";
	public static final String JAD_MICROEDITION_CONFIG = 
		"MicroEdition-Configuration";
	public static final String JAD_MICROEDITION_PROFILE =
		"MicroEdition-Profile";

	//	Optional:
	public static final String JAD_MIDLET_DATA_SIZE = 
		"MIDlet-Data-Size";
	public static final String JAD_MIDLET_DELETE_CONFIRM =
		"MIDlet-Delete-Confirm";
	public static final String JAD_MIDLET_DELETE_NOTIFY =
		"MIDlet-Delete-Notify";
	public static final String JAD_MIDLET_DESCRIPTION = 
		"MIDlet-Description";
	public static final String JAD_MIDLET_ICON = 
		"MIDlet-Icon";
	public static final String JAD_MIDLET_INFO_URL = 
		"MIDlet-Info-URL";
	public static final String JAD_MIDLET_INSTALL_NOTIFY =
		"MIDlet-Install-Notify";
	
	// The permission properties
	public static final String JAD_MIDLET_PERMISSIONS =
		"MIDlet-Permissions";
	public static final String JAD_MIDLET_PERMISSIONS_OPTIONAL =
		"MIDlet-Permissions-Opt";
	
	// Signature-related:
	public static final String JAD_MIDLET_JAR_RSA_SHA1 =
		"MIDlet-Jar-RSA-SHA1";
	
	public static final String JAD_MIDLET_CERTIFICATE =
		"MIDlet-Certificate-1-";	// (needs "N" appended to it)
}

⌨️ 快捷键说明

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