/** * Copyright (c) 2013-2014 Angelo ZERR. * 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: * 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$ }