blob: dc222de4862ea9eaf68a8b37f68e15c7adc13a1b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2007 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
* Jens Lukowski/Innoopract - initial renaming/restructuring
* Benjamin Muskalla, b.muskalla@gmx.net - [158660] character entities should have their own syntax highlighting preference
*
*******************************************************************************/
package org.eclipse.wst.xsl.ui.internal.style;
/**
* Contains the symbolic name of styles used by LineStyleProvider,
* ColorManager, and any others who may be interested
*/
public interface IStyleConstantsXSL {
public static final String BACKGROUND = "xslbackground"; //$NON-NLS-1$
public static final String DECL_BORDER = "xsldeclBoder";//$NON-NLS-1$
public static final String FOREGROUND = "xslforeground"; //$NON-NLS-1$
public static final String TAG_ATTRIBUTE_EQUALS = "xsltagAttributeEquals"; //$NON-NLS-1$
public static final String TAG_ATTRIBUTE_NAME = "xsltagAttributeName";//$NON-NLS-1$
public static final String TAG_ATTRIBUTE_VALUE = "xsltagAttributeValue";//$NON-NLS-1$
public static final String TAG_BORDER = "xsltagBorder";//$NON-NLS-1$
public static final String TAG_NAME = "xsltagName";//$NON-NLS-1$
}