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

📄 ilaunchconstants.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.launching;

/**
 * Constant definitions for launching support.
 * <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.12 $
 * <br>
 * $Date: 2006/08/06 01:44:32 $
 * <br>
 * @author Craig Setera
 */
public interface ILaunchConstants {
	/** The launch configuration type for the wireless emulator */
	public static final String LAUNCH_CONFIG_TYPE =
		"EclipseME.emulatorLaunchConfigurationType";
		 
	/** Whether we are emulating a Midlet or doing OTA */
	public static final String DO_OTA =
		"eclipseme.do_ota";
	
	/** Whether to use the specified JAD URL to do the launch, bypassing JAD creation and OTA use */
	public static final String DO_JAD_LAUNCH =
		"eclipseme.do_jad_launch";
	
	/** The URL specified by the user for launching when DO_JAD_LAUNCH has been set true */
	public static final String SPECIFIED_JAD_URL =
		"eclipseme.specified_jad_url";
	
	/** The emulated classpath for the emulated class */
	public static final String EMULATED_CLASSPATH =
		"eclipseme.emulated_classpath";
	
	/** The verbosity options */
	public static final String VERBOSITY_OPTIONS =
		"eclipseme.verbosity_options";
	
	/** Whether or not to use the project's device for emulation */
	public static final String USE_PROJECT_DEVICE =
		"eclipseme.use_project_device";
	
	/** The device to be emulated */
	public static final String EMULATED_DEVICE =
		"eclipseme.emulated_device";
	
	/** The name of the group for the device to be emulated */
	public static final String EMULATED_DEVICE_GROUP =
		"eclipseme.emulated_device_group";
	
	/** The application descriptor to be executed */
	public static final String APP_DESCRIPTOR =
		"eclipseme.app_descriptor";
	
	/** The fully-qualified class to be run in the emulator */
	public static final String EMULATED_CLASS =
		"eclipseme.emulated_class";
	
	/** The heap size to be used by the emulator */
	public static final String HEAP_SIZE =
		"eclipseme.heap_size";
	
	/** The security domain to execute the emulation under */
	public static final String SECURITY_DOMAIN = "eclipseme.security_domain";
	
	/** The security domain setting that tells not to add the security domain */
	public static final String NO_SECURITY_DOMAIN = "None";
	
	/** Extra device launch parameters */
	public static final String LAUNCH_PARAMS = "eclipseme.launch_params";
}

⌨️ 快捷键说明

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