blob: 2287a6327500cfacf8d876e25bee743836e9e0ff [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2009 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 UNIVERSAL = "UNIVERSAL"; //$NON-NLS-1$
public static final String PSEUDO = "PSEUDO"; //$NON-NLS-1$
public static final String SELECTOR_CLASS = "CLASS"; //$NON-NLS-1$
public static final String ID = "ID"; //$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 ATTRIBUTE_DELIM = "ATTRIBUTE_DELIM"; //$NON-NLS-1$
public static final String ATTRIBUTE_NAME = "ATTRIBUTE_NAME"; //$NON-NLS-1$
public static final String ATTRIBUTE_OPERATOR = "ATTRIBUTE_OPERATOR"; //$NON-NLS-1$
public static final String ATTRIBUTE_VALUE = "ATTRIBUTE_VALUE"; //$NON-NLS-1$
public static final String COMBINATOR = "COMBINATOR"; //$NON-NLS-1$
public static final String ERROR = "ERROR"; //$NON-NLS-1$
}