blob: ee19ade240f35dfa0906ffcafda0935d3a3cba49 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.debug.internal.core.launching;
import org.eclipse.wst.jsdt.debug.core.jsdi.connect.Connector;
/**
* Constants used for launching
*
* @since 1.0
*/
public interface ILaunchConstants {
/**
* Constant for the host name attribute
*/
public static final String HOST = "host"; //$NON-NLS-1$
/**
* Constant for the port attribute
*/
public static final String PORT = "port"; //$NON-NLS-1$
/**
* Constant for the argument map for a connector attribute
*/
public static final String ARGUMENT_MAP = "argument_map"; //$NON-NLS-1$
/**
* Constant for the id of the {@link Connector} used in a connector-based launch
*/
public static final String CONNECTOR_ID = "connector_id"; //$NON-NLS-1$
}