blob: a9b53305ca2161e3be0f982cf8e11ac6ff5f01a4 [file] [log] [blame]
nitind958d79a2004-11-23 19:23:00 +00001/*******************************************************************************
amywu923ee602007-04-10 18:32:07 +00002 * Copyright (c) 2004, 2005 IBM Corporation and others.
nitind958d79a2004-11-23 19:23:00 +00003 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
amywu923ee602007-04-10 18:32:07 +00007 *
nitind958d79a2004-11-23 19:23:00 +00008 * Contributors:
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
david_williamsaaadf2b2005-04-11 07:28:31 +000011package org.eclipse.wst.css.ui.internal.style;
nitind958d79a2004-11-23 19:23:00 +000012
13/**
14 * Contains the symbolic name of styles used by LineStyleProvider,
15 * ColorManager, and any others who may be interested
16 */
17public interface IStyleConstantsCSS {
18 public static final String NORMAL = "NORMAL"; //$NON-NLS-1$
19 public static final String ATMARK_RULE = "ATMARK_RULE"; //$NON-NLS-1$
20 public static final String SELECTOR = "SELECTOR"; //$NON-NLS-1$
21 public static final String MEDIA = "MEDIA"; //$NON-NLS-1$
22 public static final String COMMENT = "COMMENT"; //$NON-NLS-1$
23 public static final String PROPERTY_NAME = "PROPERTY_NAME"; //$NON-NLS-1$
24 public static final String PROPERTY_VALUE = "PROPERTY_VALUE"; //$NON-NLS-1$
25 public static final String URI = "URI"; //$NON-NLS-1$
26 public static final String STRING = "STRING"; //$NON-NLS-1$
27 public static final String COLON = "COLON"; //$NON-NLS-1$
28 public static final String SEMI_COLON = "SEMI_COLON"; //$NON-NLS-1$
29 public static final String CURLY_BRACE = "CURLY_BRACE"; //$NON-NLS-1$
30 public static final String ERROR = "ERROR"; //$NON-NLS-1$
amywu923ee602007-04-10 18:32:07 +000031}