/******************************************************************************* * Copyright © 2008, 2013 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.edt.debug.javascript.internal.launching; /** * Constants for the RUI debugger. */ public interface IRUIDebugConstants { /** * Unique identifier for the RUI debug model (value <code>org.eclipse.edt.debug.javascript.rui</code>). */ public static final String ID_RUI_DEBUG_MODEL = "org.eclipse.edt.debug.javascript.rui"; //$NON-NLS-1$ public static final String ID_RUI_LAUNCH_TYPE = "org.eclipse.edt.debug.javascript.ruiLaunchConfigurationType"; //$NON-NLS-1$ public static final String RUI_ICON_VARIABLE = "RUI_ICON_VARIABLE"; //$NON-NLS-1$ public static final String RUI_ICON_DEBUG_EXC = "RUI_ICON_DEBUG_EXC"; //$NON-NLS-1$ }