blob: 8e9dfbdf1b82f22e92eec19b1c6595a405aab4fe [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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$
}