blob: e47bae8aff234e56e573d4cbf5514122357d6004 [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.rhino.transport;
/**
* Common constants
*
* @since 1.0
*/
public interface Constants {
/**
* Constant representing a space
*/
public static final String SPACE = " "; //$NON-NLS-1$
/**
* Constant representing a colon.<br>
* <br>
* Value is: <code>:</code>
*/
public static final String COLON = ":"; //$NON-NLS-1$
/**
* Constant representing the empty string
*/
public static final String EMPTY_STRING = ""; //$NON-NLS-1$
/**
* UTF-8 encoding constant <br>
* <br>
* Value is: <code>UTF-8</code>
*/
public static final String UTF_8 = "UTF-8"; //$NON-NLS-1$
/**
* Debug property name <br>
* <br>
* Value is: <code>rhino.debug</code>
*/
public static final String RHINO_DEBUG = "rhino.debug"; //$NON-NLS-1$
}