Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 75280d326370ed06e6479b65855508412224ae31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*******************************************************************************
 * Copyright (c) 2004 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.css.ui.internal.style;

/**
 * Contains the symbolic name of styles used by LineStyleProvider,
 * ColorManager, and any others who may be interested
 */
public interface IStyleConstantsCSS {
	public static final String NORMAL = "NORMAL"; //$NON-NLS-1$
	public static final String ATMARK_RULE = "ATMARK_RULE"; //$NON-NLS-1$
	public static final String SELECTOR = "SELECTOR"; //$NON-NLS-1$
	public static final String MEDIA = "MEDIA"; //$NON-NLS-1$
	public static final String COMMENT = "COMMENT"; //$NON-NLS-1$
	public static final String PROPERTY_NAME = "PROPERTY_NAME"; //$NON-NLS-1$
	public static final String PROPERTY_VALUE = "PROPERTY_VALUE"; //$NON-NLS-1$
	public static final String URI = "URI"; //$NON-NLS-1$
	public static final String STRING = "STRING"; //$NON-NLS-1$
	public static final String COLON = "COLON"; //$NON-NLS-1$
	public static final String SEMI_COLON = "SEMI_COLON"; //$NON-NLS-1$
	public static final String CURLY_BRACE = "CURLY_BRACE"; //$NON-NLS-1$
	public static final String ERROR = "ERROR"; //$NON-NLS-1$
}

Back to the top