/******************************************************************************* * This file is protected by Copyright. * Please refer to the COPYRIGHT file distributed with this source distribution. * * This file is part of REDHAWK IDE. * * 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 *******************************************************************************/ package gov.redhawk.ide.debug.variables; /** * @since 4.0 */ public final class LaunchVariables { private LaunchVariables() { } /** * @since 8.0 */ public static final String WAVEFORM_NAME = "WAVEFORM_NAME"; public static final String NAMING_CONTEXT_IOR = "NAMING_CONTEXT_IOR"; public static final String NAME_BINDING = "NAME_BINDING"; public static final String COMPONENT_IDENTIFIER = "COMPONENT_IDENTIFIER"; public static final String EXEC_PARAMS = "EXEC_PARAMS"; public static final String DEBUG_LEVEL = "DEBUG_LEVEL"; public static final String RH_DEPLOYMENT_ROOT = "RH_DEPLOYMENT_ROOT"; public static final String DEVICE_MGR_IOR = "DEVICE_MGR_IOR"; public static final String PROFILE_NAME = "PROFILE_NAME"; public static final String DEVICE_ID = "DEVICE_ID"; public static final String DEVICE_LABEL = "DEVICE_LABEL"; public static final String SERVICE_NAME = "SERVICE_NAME"; }