blob: 2b9a04c824c4307b7bb3322fdd03fc6e984e7317 [file] [log] [blame]
/**
* Copyright (c) 2013-2015 Angelo ZERR.
* All rights reserved. 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:
* Angelo Zerr <angelo.zerr@gmail.com> - initial API and implementation
*/
package org.eclipse.wst.json.ui.internal.style;
/**
* Style constants for JSON.
*
*/
public interface IStyleConstantsJSON {
public static final String NORMAL = "NORMAL"; //$NON-NLS-1$
public static final String CURLY_BRACE = "CURLY_BRACE"; //$NON-NLS-1$
public static final String COLON = "COLON"; //$NON-NLS-1$
public static final String COMMA = "COMMA"; //$NON-NLS-1$
public static final String OBJECT_KEY = "OBJECT_KEY"; //$NON-NLS-1$
public static final String VALUE_STRING = "VALUE_STRING"; //$NON-NLS-1$
public static final String VALUE_NUMBER = "VALUE_NUMBER"; //$NON-NLS-1$
public static final String VALUE_BOOLEAN = "VALUE_BOOLEAN"; //$NON-NLS-1$
public static final String VALUE_NULL = "VALUE_NULL"; //$NON-NLS-1$
public static final String COMMENT = "COMMENT"; //$NON-NLS-1$
}