Copyright (c) 2000, 2018 IBM Corporation and others. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 Contributors: IBM Corporation - initial API and implementation
/******************************************************************************* * Copyright (c) 2000, 2018 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/
package org.eclipse.jdt.launching; import org.eclipse.jdt.internal.launching.LaunchingPlugin;
Constant definitions for Java launch configurations.

Constant definitions only

Since:2.0
@noimplementThis interface is not intended to be implemented by clients.
@noextendThis interface is not intended to be extended by clients.
/** * Constant definitions for Java launch configurations. * <p> * Constant definitions only * </p> * @since 2.0 * @noimplement This interface is not intended to be implemented by clients. * @noextend This interface is not intended to be extended by clients. */
public interface IJavaLaunchConfigurationConstants {
Identifier for the Local Java Application launch configuration type (value "org.eclipse.jdt.launching.localJavaApplication").
/** * Identifier for the Local Java Application launch configuration type * (value <code>"org.eclipse.jdt.launching.localJavaApplication"</code>). */
public static final String ID_JAVA_APPLICATION = LaunchingPlugin.getUniqueIdentifier() + ".localJavaApplication"; //$NON-NLS-1$
Identifier for the Remote Java Application launch configuration type (value "org.eclipse.jdt.launching.remoteJavaApplication").
/** * Identifier for the Remote Java Application launch configuration type * (value <code>"org.eclipse.jdt.launching.remoteJavaApplication"</code>). */
public static final String ID_REMOTE_JAVA_APPLICATION = LaunchingPlugin.getUniqueIdentifier() + ".remoteJavaApplication"; //$NON-NLS-1$
Identifier for the Java Applet launch configuration type (value "org.eclipse.jdt.launching.javaApplet").
/** * Identifier for the Java Applet launch configuration type * (value <code>"org.eclipse.jdt.launching.javaApplet"</code>). */
public static final String ID_JAVA_APPLET = LaunchingPlugin.getUniqueIdentifier() + ".javaApplet"; //$NON-NLS-1$
Identifier for the standard Socket Attaching VM connector (value "org.eclipse.jdt.launching.socketAttachConnector").
/** * Identifier for the standard Socket Attaching VM connector * (value <code>"org.eclipse.jdt.launching.socketAttachConnector"</code>). */
public static final String ID_SOCKET_ATTACH_VM_CONNECTOR = LaunchingPlugin.getUniqueIdentifier() + ".socketAttachConnector"; //$NON-NLS-1$
Identifier for the standard Socket Listening VM connector (value "org.eclipse.jdt.launching.socketListenConnector").
Since:3.4
/** * Identifier for the standard Socket Listening VM connector * (value <code>"org.eclipse.jdt.launching.socketListenConnector"</code>). * @since 3.4 */
public static final String ID_SOCKET_LISTEN_VM_CONNECTOR = LaunchingPlugin.getUniqueIdentifier() + ".socketListenConnector"; //$NON-NLS-1$
Identifier for the java process type, which is annotated on processes created by the local java application launch delegate. (value "java").
/** * Identifier for the java process type, which is annotated on processes created * by the local java application launch delegate. * * (value <code>"java"</code>). */
public static final String ID_JAVA_PROCESS_TYPE = "java"; //$NON-NLS-1$
Launch configuration attribute key. The value is a name of a Java project associated with a Java launch configuration.
/** * Launch configuration attribute key. The value is a name of * a Java project associated with a Java launch configuration. */
/* * This constant is referenced from an upper-layer bundle * @see org.eclipse.jdt.internal.debug.core.model.JDIDebugTarget#prepareBreakpointsSearchScope() */ public static final String ATTR_PROJECT_NAME = LaunchingPlugin.getUniqueIdentifier() + ".PROJECT_ATTR"; //$NON-NLS-1$
Launch configuration attribute key. The value is a fully qualified name of a main type to launch.
/** * Launch configuration attribute key. The value is a fully qualified name * of a main type to launch. */
public static final String ATTR_MAIN_TYPE_NAME = LaunchingPlugin.getUniqueIdentifier() + ".MAIN_TYPE"; //$NON-NLS-1$
Launch configuration attribute key. The value is a boolean specifying whether execution should stop when main is entered. The default value is false.
Since:2.1
/** * Launch configuration attribute key. The value is a boolean specifying * whether execution should stop when main is entered. The default value * is <code>false</code>. * * @since 2.1 */
public static final String ATTR_STOP_IN_MAIN = LaunchingPlugin.getUniqueIdentifier() + ".STOP_IN_MAIN"; //$NON-NLS-1$
Launch configuration attribute key. The value is a string specifying program arguments for a Java launch configuration, as they should appear on the command line.
/** * Launch configuration attribute key. The value is a string specifying * program arguments for a Java launch configuration, as they should appear * on the command line. */
public static final String ATTR_PROGRAM_ARGUMENTS = LaunchingPlugin.getUniqueIdentifier() + ".PROGRAM_ARGUMENTS"; //$NON-NLS-1$
Launch configuration attribute key. The value is a string specifying VM arguments for a Java launch configuration, as they should appear on the command line.
/** * Launch configuration attribute key. The value is a string specifying * VM arguments for a Java launch configuration, as they should appear * on the command line. */
public static final String ATTR_VM_ARGUMENTS = LaunchingPlugin.getUniqueIdentifier() + ".VM_ARGUMENTS"; //$NON-NLS-1$
Launch configuration attribute key. The value is a string specifying a path to the working directory to use when launching a local VM. When specified as an absolute path, the path represents a path in the local file system. When specified as a full path, the path represents a workspace relative path. When unspecified, the working directory defaults to the project associated with a launch configuration. When no project is associated with a launch configuration, the working directory is inherited from the current process.
/** * Launch configuration attribute key. The value is a string specifying a * path to the working directory to use when launching a local VM. * When specified as an absolute path, the path represents a path in the local * file system. When specified as a full path, the path represents a workspace * relative path. When unspecified, the working directory defaults to the project * associated with a launch configuration. When no project is associated with a * launch configuration, the working directory is inherited from the current * process. */
public static final String ATTR_WORKING_DIRECTORY = LaunchingPlugin.getUniqueIdentifier() + ".WORKING_DIRECTORY"; //$NON-NLS-1$
Launch configuration attribute key. The value is a path identifying the JRE used when launching a local VM. The path is a classpath container corresponding to the JavaRuntime.JRE_CONTAINER classpath container.

When unspecified the default JRE for a launch configuration is used (which is the JRE associated with the project being launched, or the workspace default JRE when no project is associated with a configuration). The default JRE classpath container refers explicitly to the workspace default JRE.

Since:3.2
/** * Launch configuration attribute key. The value is a path identifying the JRE used * when launching a local VM. The path is a classpath container corresponding * to the <code>JavaRuntime.JRE_CONTAINER</code> classpath container. * <p> * When unspecified the default JRE for a launch configuration is used (which is the * JRE associated with the project being launched, or the workspace default JRE when * no project is associated with a configuration). The default JRE classpath container * refers explicitly to the workspace default JRE. * </p> * @since 3.2 */
public static final String ATTR_JRE_CONTAINER_PATH = JavaRuntime.JRE_CONTAINER;
Launch configuration attribute key. The value is a name of a VM install to use when launching a local VM. This attribute must be qualified by a VM install type, via the ATTR_VM_INSTALL_TYPE attribute. When unspecified, the default VM is used.
Deprecated:use ATTR_JRE_CONTAINER_PATH
/** * Launch configuration attribute key. The value is a name of a VM install * to use when launching a local VM. This attribute must be qualified * by a VM install type, via the <code>ATTR_VM_INSTALL_TYPE</code> * attribute. When unspecified, the default VM is used. * * @deprecated use <code>ATTR_JRE_CONTAINER_PATH</code> */
@Deprecated public static final String ATTR_VM_INSTALL_NAME = LaunchingPlugin.getUniqueIdentifier() + ".VM_INSTALL_NAME"; //$NON-NLS-1$
Launch configuration attribute key. The value is an identifier of a VM install type. Used in conjunction with a VM install name, to specify the VM to use when launching a local Java application. The associated VM install name is specified via the attribute ATTR_VM_INSTALL_NAME.
Deprecated:use ATTR_JRE_CONTAINER_PATH
/** * Launch configuration attribute key. The value is an identifier of * a VM install type. Used in conjunction with a VM install name, to * specify the VM to use when launching a local Java application. * The associated VM install name is specified via the attribute * <code>ATTR_VM_INSTALL_NAME</code>. * * @deprecated use <code>ATTR_JRE_CONTAINER_PATH</code> */
@Deprecated public static final String ATTR_VM_INSTALL_TYPE = LaunchingPlugin.getUniqueIdentifier() + ".VM_INSTALL_TYPE_ID"; //$NON-NLS-1$
Launch configuration attribute key. The value is a Map of attributes specific to a particular VM install type, used when launching a local Java application. The map is passed to a VMRunner via a VMRunnerConfiguration when launching a VM. The attributes in the map are implementation dependent and are limited to String keys and values.
/** * Launch configuration attribute key. The value is a Map of attributes specific * to a particular VM install type, used when launching a local Java * application. The map is passed to a <code>VMRunner</code> via a <code>VMRunnerConfiguration</code> * when launching a VM. The attributes in the map are implementation dependent * and are limited to String keys and values. */
public static final String ATTR_VM_INSTALL_TYPE_SPECIFIC_ATTRS_MAP = LaunchingPlugin.getUniqueIdentifier() + "VM_INSTALL_TYPE_SPECIFIC_ATTRS_MAP"; //$NON-NLS-1$
Launch configuration attribute key. The value is an identifier of a VM connector, specifying a connector to use when attaching to a remote VM.
/** * Launch configuration attribute key. The value is an identifier of * a VM connector, specifying a connector to use when attaching to * a remote VM. */
public static final String ATTR_VM_CONNECTOR= LaunchingPlugin.getUniqueIdentifier() + ".VM_CONNECTOR_ID"; //$NON-NLS-1$
Launch configuration attribute key. The attribute value is an ordered list of strings which are mementos for runtime class path entries. When unspecified, a default classpath is generated by the classpath provider associated with a launch configuration (via the ATTR_CLASSPATH_PROVIDER attribute).
/** * Launch configuration attribute key. The attribute value is an ordered list of strings * which are mementos for runtime class path entries. When unspecified, a default * classpath is generated by the classpath provider associated with a launch * configuration (via the <code>ATTR_CLASSPATH_PROVIDER</code> attribute). */
public static final String ATTR_CLASSPATH = LaunchingPlugin.getUniqueIdentifier() + ".CLASSPATH"; //$NON-NLS-1$
Launch configuration attribute key. The attribute value is an ordered list of strings which are mementos for runtime module path entries. When unspecified, a default modulepath is generated by the dependency provider associated with a launch configuration (via the ATTR_CLASSPATH_PROVIDER attribute).
Since:3.10
/** * Launch configuration attribute key. The attribute value is an ordered list of strings which are mementos for runtime module path entries. When * unspecified, a default modulepath is generated by the dependency provider associated with a launch configuration (via the * <code>ATTR_CLASSPATH_PROVIDER</code> attribute). * * @since 3.10 */
public static final String ATTR_MODULEPATH = LaunchingPlugin.getUniqueIdentifier() + ".MODULEPATH"; //$NON-NLS-1$
Launch configuration attribute key. The value is a boolean specifying whether a default classpath should be used when launching a local Java application. When false, a classpath must be specified via the ATTR_CLASSPATH attribute. When true or unspecified, a classpath is computed by the classpath provider associated with a launch configuration.
/** * Launch configuration attribute key. The value is a boolean specifying * whether a default classpath should be used when launching a local * Java application. When <code>false</code>, a classpath must be specified * via the <code>ATTR_CLASSPATH</code> attribute. When <code>true</code> or * unspecified, a classpath is computed by the classpath provider associated * with a launch configuration. */
/* * This constant is referenced from an upper-layer bundle * @see org.eclipse.jdt.internal.debug.core.model.JDIDebugTarget#prepareBreakpointsSearchScope() */ public static final String ATTR_DEFAULT_CLASSPATH = LaunchingPlugin.getUniqueIdentifier() + ".DEFAULT_CLASSPATH"; //$NON-NLS-1$
Launch configuration attribute key. The value is a boolean specifying whether a default build path module cli options should be used when launching a local Java application. When false, a module cli option must be specified via the ATTR_MODULE_CLI_OPTIONS attribute. When true or unspecified, a classpath is computed by the classpath provider associated with a launch configuration.
Since:3.10
/** * Launch configuration attribute key. The value is a boolean specifying whether a default build path module cli options should be used when * launching a local Java application. When <code>false</code>, a module cli option must be specified via the <code>ATTR_MODULE_CLI_OPTIONS</code> * attribute. When <code>true</code> or unspecified, a classpath is computed by the classpath provider associated with a launch configuration. * * @since 3.10 */
public static final String ATTR_DEFAULT_MODULE_CLI_OPTIONS = LaunchingPlugin.getUniqueIdentifier() + ".DEFAULT_MODULE_CLI_OPTIONS"; //$NON-NLS-1$
Launch configuration attribute key. The value is a string with module cli options if the default is not used for launching a local Java application.
Since:3.10
/** * Launch configuration attribute key. The value is a string with module cli options if the default is not used for launching a local Java * application. * * @since 3.10 */
public static final String ATTR_MODULE_CLI_OPTIONS = LaunchingPlugin.getUniqueIdentifier() + ".MODULE_CLI_OPTIONS"; //$NON-NLS-1$
Launch configuration attribute key. The value is an identifier of a classpath provider extension used to compute the classpath for a launch configuration. When unspecified, the default classpath provider is used - StandardClasspathProvider.
/** * Launch configuration attribute key. The value is an identifier of a * classpath provider extension used to compute the classpath * for a launch configuration. When unspecified, the default classpath * provider is used - <code>StandardClasspathProvider</code>. */
public static final String ATTR_CLASSPATH_PROVIDER = LaunchingPlugin.getUniqueIdentifier() + ".CLASSPATH_PROVIDER"; //$NON-NLS-1$
Launch configuration attribute key. The value is an ordered list of strings which are mementos for associated runtime classpath entries interpreted as locations in which to look for source code. When unspecified, a default source lookup path is generated by the source path provider associated with a launch configurations (via the ATTR_SOURCE_PATH_PROVIDER attribute).
/** * Launch configuration attribute key. The value is an ordered list of * strings which are mementos for associated runtime classpath entries * interpreted as locations in which to look for source code. When unspecified, * a default source lookup path is generated by the source path provider * associated with a launch configurations (via the * <code>ATTR_SOURCE_PATH_PROVIDER</code> attribute). */
public static final String ATTR_SOURCE_PATH = LaunchingPlugin.getUniqueIdentifier() + ".SOURCE_PATH"; //$NON-NLS-1$
Launch configuration attribute key. The value is a boolean specifying whether a default source lookup path should be used. When false a source path must be specified via the ATTR_SOURCE_PATH attribute. When true or unspecified, a source lookup path is computed by the source path provider associated with a launch configuration.
/** * Launch configuration attribute key. The value is a boolean specifying * whether a default source lookup path should be used. When * <code>false</code> a source path must be specified via the * <code>ATTR_SOURCE_PATH</code> attribute. When <code>true</code> or * unspecified, a source lookup path is computed by the source path * provider associated with a launch configuration. */
public static final String ATTR_DEFAULT_SOURCE_PATH = LaunchingPlugin.getUniqueIdentifier() + ".DEFAULT_SOURCE_PATH"; //$NON-NLS-1$
Launch configuration attribute key. The value is an identifier of a source path provider extension used to compute the source lookup path for a launch configuration. When unspecified, the default source lookup path provider is used - StandardSourcePathProvider.
/** * Launch configuration attribute key. The value is an identifier of a * source path provider extension used to compute the source lookup path * for a launch configuration. When unspecified, the default source lookup * path provider is used - <code>StandardSourcePathProvider</code>. */
public static final String ATTR_SOURCE_PATH_PROVIDER = LaunchingPlugin.getUniqueIdentifier() + ".SOURCE_PATH_PROVIDER"; //$NON-NLS-1$
Launch configuration attribute key. The value is a boolean, indicating whether a VM will support/allow the terminate action. This attribute is used for remote debugging.
/** * Launch configuration attribute key. The value is a boolean, indicating * whether a VM will support/allow the terminate action. * This attribute is used for remote debugging. */
public static final String ATTR_ALLOW_TERMINATE = LaunchingPlugin.getUniqueIdentifier() + ".ALLOW_TERMINATE"; //$NON-NLS-1$
Attribute key for VM specific attributes found in the ATTR_VM_INSTALL_TYPE_SPECIFIC_ATTRS_MAP. The value is a String, indicating the String to use to invoke the JRE.
/** * Attribute key for VM specific attributes found in the * <code>ATTR_VM_INSTALL_TYPE_SPECIFIC_ATTRS_MAP</code>. The value is a String, * indicating the String to use to invoke the JRE. */
public static final String ATTR_JAVA_COMMAND = LaunchingPlugin.getUniqueIdentifier() + ".JAVA_COMMAND"; //$NON-NLS-1$
Launch configuration attribute key. The value is a map. Keys in the map correspond to arguments names returned by IVMConnector#getDefaultArguments(). Values are strings corresponding to the values to use when establishing a connection to a remote VM.
/** * Launch configuration attribute key. The value is * a map. Keys in the map correspond to arguments names * returned by <code>IVMConnector#getDefaultArguments()</code>. * Values are strings corresponding to the values to use when * establishing a connection to a remote VM. */
public static final String ATTR_CONNECT_MAP = LaunchingPlugin.getUniqueIdentifier() + ".CONNECT_MAP"; //$NON-NLS-1$
Launch configuration attribute key. The value is an integer indicating the width of the applet viewing area.
Since:2.1
/** * Launch configuration attribute key. The value is an integer * indicating the width of the applet viewing area. * * @since 2.1 */
public static final String ATTR_APPLET_WIDTH = LaunchingPlugin.getUniqueIdentifier() + ".APPLET_WIDTH"; //$NON-NLS-1$
Launch configuration attribute key. The value is an integer indicating the height of the applet viewing area.
Since:2.1
/** * Launch configuration attribute key. The value is an integer * indicating the height of the applet viewing area. * * @since 2.1 */
public static final String ATTR_APPLET_HEIGHT = LaunchingPlugin.getUniqueIdentifier() + ".APPLET_HEIGHT"; //$NON-NLS-1$
Launch configuration attribute key. The value is a String indicating the HTML name of the applet.
Since:2.1
/** * Launch configuration attribute key. The value is a String indicating the * HTML name of the applet. * * @since 2.1 */
public static final String ATTR_APPLET_NAME = LaunchingPlugin.getUniqueIdentifier() + ".APPLET_NAME"; //$NON-NLS-1$
Launch configuration attribute key. The value is a Map. Keys in the map represent applet parameter names and the values in the map are the corresponding parameter values
Since:2.1
/** * Launch configuration attribute key. The value is a Map. Keys in the map * represent applet parameter names and the values in the map are the * corresponding parameter values * * @since 2.1 */
public static final String ATTR_APPLET_PARAMETERS = LaunchingPlugin.getUniqueIdentifier() + ".APPLET_PARAMETERS"; //$NON-NLS-1$
Launch configuration attribute key. The value is a String indicating the fully qualified name of the applet viewer utility class to use.
Since:2.1
/** * Launch configuration attribute key. The value is a String indicating the * fully qualified name of the applet viewer utility class to use. * * @since 2.1 */
public static final String ATTR_APPLET_APPLETVIEWER_CLASS = LaunchingPlugin.getUniqueIdentifier() + ".APPLET_APPLETVIEWER_CLASS"; //$NON-NLS-1$
Attribute key for a VM specific argument. Value is an array of strings describing paths in the local file system that should be prepended to the bootpath, or null if none. The value is computed dynamically at launch time and placed in the VM specific arguments map by the Java application launch delegate.
Since:3.0
/** * Attribute key for a VM specific argument. Value is an array * of strings describing paths in the local file system that * should be prepended to the bootpath, or <code>null</code> * if none. The value is computed dynamically at launch time * and placed in the VM specific arguments map by the Java * application launch delegate. * * @since 3.0 */
public static final String ATTR_BOOTPATH_PREPEND = LaunchingPlugin.getUniqueIdentifier() + ".-Xbootclasspath/p:"; //$NON-NLS-1$
Attribute key for a VM specific argument. Value is an array of strings describing paths in the local file system that should be placed on the bootpath explicitly, or null if none. The value is computed dynamically at launch time and placed in the VM specific arguments map by the Java application launch delegate.
Since:3.0
/** * Attribute key for a VM specific argument. Value is an array * of strings describing paths in the local file system that * should be placed on the bootpath explicitly, or <code>null</code> * if none. The value is computed dynamically at launch time * and placed in the VM specific arguments map by the Java * application launch delegate. * * @since 3.0 */
public static final String ATTR_BOOTPATH = LaunchingPlugin.getUniqueIdentifier() + ".-Xbootclasspath:"; //$NON-NLS-1$
Attribute key for a VM specific argument. Value is an array of strings describing paths in the local file system that should be appended to the bootpath, or null if none. The value is computed dynamically at launch time and placed in the VM specific arguments map by the Java application launch delegate.
Since:3.0
/** * Attribute key for a VM specific argument. Value is an array * of strings describing paths in the local file system that * should be appended to the bootpath, or <code>null</code> * if none. The value is computed dynamically at launch time * and placed in the VM specific arguments map by the Java * application launch delegate. * * @since 3.0 */
public static final String ATTR_BOOTPATH_APPEND = LaunchingPlugin.getUniqueIdentifier() + ".-Xbootclasspath/a:"; //$NON-NLS-1$
Attribute key for a Mac OSX VM-specific argument. Value is a boolean indicating if the -XStartOnFirstThread argument should be used when launching.
Since:3.7
/** * Attribute key for a Mac OSX VM-specific argument. Value is a boolean * indicating if the <code>-XStartOnFirstThread</code> argument should be used * when launching. * * @since 3.7 */
public static final String ATTR_USE_START_ON_FIRST_THREAD = LaunchingPlugin.getUniqueIdentifier() + ".ATTR_USE_START_ON_FIRST_THREAD"; //$NON-NLS-1$
Launch configuration attribute key. The value is a boolean specifying whether output folders corresponding to test sources should not be added to the runtime classpath and test dependencies should not be added to the default classpath.
Since:3.10
/** * Launch configuration attribute key. The value is a boolean specifying whether output folders corresponding to test sources should not be added * to the runtime classpath and test dependencies should not be added to the default classpath. * * @since 3.10 */
public static final String ATTR_EXCLUDE_TEST_CODE = LaunchingPlugin.getUniqueIdentifier() + ".ATTR_EXCLUDE_TEST_CODE"; //$NON-NLS-1$
Launch configuration attribute key. When set, the JPMS option --add-modules will be added to the command line with the provided string value as the option's argument. This attribute is specifically designed to support the special arguments "ALL-DEFAULT", "ALL-SYSTEM", and "ALL-MODULE-PATH".
Since:3.16
/** * Launch configuration attribute key. When set, the JPMS option {@code --add-modules} will be added to the command line with the provided string * value as the option's argument. This attribute is specifically designed to support the special arguments "ALL-DEFAULT", "ALL-SYSTEM", and * "ALL-MODULE-PATH". * * @since 3.16 */
public static final String ATTR_SPECIAL_ADD_MODULES = LaunchingPlugin.getUniqueIdentifier() + ".ATTR_SPECIAL_ADD_MODULES"; //$NON-NLS-1$
Since:3.11
/** * @since 3.11 */
public static final String ATTR_USE_CLASSPATH_ONLY_JAR = LaunchingPlugin.getUniqueIdentifier() + ".ATTR_USE_CLASSPATH_ONLY_JAR"; //$NON-NLS-1$
Status code indicating a launch configuration does not specify a project when a project is required.
/** * Status code indicating a launch configuration does not specify a project when a project is required. */
public static final int ERR_UNSPECIFIED_PROJECT = 100;
Status code indicating a launch configuration does not specify a main type to launch.
/** * Status code indicating a launch configuration does not * specify a main type to launch. */
public static final int ERR_UNSPECIFIED_MAIN_TYPE = 101;
Status code indicating a launch configuration does not specify a VM Install Type.
/** * Status code indicating a launch configuration does not * specify a VM Install Type. */
public static final int ERR_UNSPECIFIED_VM_INSTALL_TYPE = 102;
Status code indicating a launch configuration does not specify a VM Install
/** * Status code indicating a launch configuration does not * specify a VM Install */
public static final int ERR_UNSPECIFIED_VM_INSTALL = 103;
Status code indicating a launch configuration's VM install type could not be found.
/** * Status code indicating a launch configuration's VM install * type could not be found. */
public static final int ERR_VM_INSTALL_TYPE_DOES_NOT_EXIST = 104;
Status code indicating a launch configuration's VM install could not be found.
/** * Status code indicating a launch configuration's VM install * could not be found. */
public static final int ERR_VM_INSTALL_DOES_NOT_EXIST = 105;
Status code indicating a VM runner could not be located for the VM install specified by a launch configuration.
/** * Status code indicating a VM runner could not be located * for the VM install specified by a launch configuration. */
public static final int ERR_VM_RUNNER_DOES_NOT_EXIST = 106;
Status code indicating the project associated with a launch configuration is not a Java project.
/** * Status code indicating the project associated with * a launch configuration is not a Java project. */
public static final int ERR_NOT_A_JAVA_PROJECT = 107;
Status code indicating the specified working directory does not exist.
/** * Status code indicating the specified working directory * does not exist. */
public static final int ERR_WORKING_DIRECTORY_DOES_NOT_EXIST = 108;
Status code indicating a launch configuration does not specify a host name value
/** * Status code indicating a launch configuration does not * specify a host name value */
public static final int ERR_UNSPECIFIED_HOSTNAME = 109;
Status code indicating a launch configuration has specified an invalid host name attribute
/** * Status code indicating a launch configuration has * specified an invalid host name attribute */
public static final int ERR_INVALID_HOSTNAME = 110;
Status code indicating a launch configuration does not specify a port number value
/** * Status code indicating a launch configuration does not * specify a port number value */
public static final int ERR_UNSPECIFIED_PORT = 111;
Status code indicating a launch configuration has specified an invalid port number attribute
/** * Status code indicating a launch configuration has * specified an invalid port number attribute */
public static final int ERR_INVALID_PORT = 112;
Status code indicating an attempt to connect to a remote VM has failed or an attempt to listen for a remote VM connecting has failed.
/** * Status code indicating an attempt to connect to a remote VM * has failed or an attempt to listen for a remote VM connecting * has failed. */
public static final int ERR_REMOTE_VM_CONNECTION_FAILED = 113;
Status code indicating that the shared memory attach or listen connector could not be found.
/** * Status code indicating that the shared memory attach or listen * connector could not be found. */
public static final int ERR_SHARED_MEMORY_CONNECTOR_UNAVAILABLE = 114;
Status code indicating that the Eclipse runtime does not support launching a program with a working directory. This feature is only available if Eclipse is run on a 1.3 runtime or higher.

A status handler may be registered for this error condition, and should return a Boolean indicating whether the program should be relaunched with the default working directory.

/** * Status code indicating that the Eclipse runtime does not support * launching a program with a working directory. This feature is only * available if Eclipse is run on a 1.3 runtime or higher. * <p> * A status handler may be registered for this error condition, * and should return a Boolean indicating whether the program * should be relaunched with the default working directory. * </p> */
public static final int ERR_WORKING_DIRECTORY_NOT_SUPPORTED = 115;
Status code indicating that an error occurred launching a VM. The status error message is the text that the VM wrote to standard error before exiting.
/** * Status code indicating that an error occurred launching a VM. * The status error message is the text that * the VM wrote to standard error before exiting. */
public static final int ERR_VM_LAUNCH_ERROR = 116;
Status code indicating that a timeout has occurred waiting for the VM to connect with the debugger.

A status handler may be registered for this error condition, and should return a Boolean indicating whether the program should continue waiting for a connection for the associated timeout period.

/** * Status code indicating that a timeout has occurred waiting for * the VM to connect with the debugger. * <p> * A status handler may be registered for this error condition, * and should return a Boolean indicating whether the program * should continue waiting for a connection for the associated * timeout period. * </p> */
public static final int ERR_VM_CONNECT_TIMEOUT = 117;
Status code indicating that a free socket was not available to communicate with the VM.
/** * Status code indicating that a free socket was not available to * communicate with the VM. */
public static final int ERR_NO_SOCKET_AVAILABLE = 118;
Status code indicating that the JDI connector required for a debug launch was not available.
/** * Status code indicating that the JDI connector required for a * debug launch was not available. */
public static final int ERR_CONNECTOR_NOT_AVAILABLE = 119;
Status code indicating that the debugger failed to connect to the VM.
/** * Status code indicating that the debugger failed to connect * to the VM. */
public static final int ERR_CONNECTION_FAILED = 120;
Status code indicating that the applet launcher was asked to launch a resource that did not extend java.applet.Applet.
Since:2.1
/** * Status code indicating that the applet launcher was asked to * launch a resource that did not extend <code>java.applet.Applet</code>. * * @since 2.1 */
public static final int ERR_NOT_AN_APPLET = 121;
Status code indicating that no launch configuration was specified.
Since:2.1
/** * Status code indicating that no launch configuration was specified. * * @since 2.1 */
public static final int ERR_UNSPECIFIED_LAUNCH_CONFIG = 122;
Status code indicating that the .html file used to initiate an applet launch could not be built.
Since:2.1
/** * Status code indicating that the .html file used to initiate an applet * launch could not be built. * * @since 2.1 */
public static final int ERR_COULD_NOT_BUILD_HTML = 123;
Status code indicating that the project referenced by a launch configuration is closed.
Since:3.0
/** * Status code indicating that the project referenced by a launch configuration * is closed. * * @since 3.0 */
public static final int ERR_PROJECT_CLOSED = 124;
Since:3.11
/** * @since 3.11 */
public static final int ERR_CLASSPATH_TOO_LONG = 125;
Status code indicating an unexpected internal error.
/** * Status code indicating an unexpected internal error. */
public static final int ERR_INTERNAL_ERROR = 150;
Default value for the 'ATTR_APPLET_APPLETVIEWER' attribute.
Since:2.1
/** * Default value for the 'ATTR_APPLET_APPLETVIEWER' attribute. * * @since 2.1 */
public static final String DEFAULT_APPLETVIEWER_CLASS = "sun.applet.AppletViewer"; //$NON-NLS-1$
Detail code for a custom debug event that is fired when a remote debug configuration with a standard socket listen connector is ready to accept connections from a remote VM.
See Also:
Since:3.4
/** * Detail code for a custom debug event that is fired when a remote debug configuration with * a standard socket listen connector is ready to accept connections from a remote VM. * * @since 3.4 * @see org.eclipse.jdt.internal.launching.SocketListenConnector * @see org.eclipse.jdt.internal.launching.SocketListenConnectorProcess */
public static final int DETAIL_CONFIG_READY_TO_ACCEPT_REMOTE_VM_CONNECTION = 1001; }